gpt4 book ai didi

javascript - 有向无环层次图实现

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:12:50 25 4
gpt4 key购买 nike

我需要显示一个看起来有点像这样的无环有向图:

enter image description here

我创建了一个类似于此的嵌套分层数据结构:

[
{
node: 'abs'
children: [
{
node: 'jhg',
children: [{...}]
{
node: 'AAA',
children: [{...}]
},
{
node: 'fer'
children: [
{
node: 'AAA',
children: [{...}]
{
node: 'xcv',
children: [{...}]
},
{
]

我不确定这是否是实际显示数据的最佳方式,因为具有多个父节点及其子节点的节点会出现多次,但我还不知道如何处理它。

我只是想将这些节点渲染到一个假想的网格中。因此我需要解析我的数据结构并设置它们的网格值。问题是我不知道如何用层次逻辑解析数据结构。

我现在正在做的事情显然会给具有多个父节点的节点带来问题:

for (const root of allRoots) {
currentLevel = 0;
if (root.node === 'VB8') {
getChildrenTree(root);
}
}

function getChildrenTree(node) {
currentLevel++;
node._gridX = currentLevel;

if (node.children.length > 0) {
for(const nextChild of children ) {
getChildrenTree(nextChild);
}
}

此代码的问题在于它只会运行一条路径,然后在没有任何 child 时停止。

我只需要一个遍历树并设置每个节点层次结构级别的算法。

我希望这不会太困惑。

最佳答案

如果你想从两个不同的父节点引用同一个节点,你不应该定义它超过一次。我建议在一个平面数组中列出所有节点,并使用单个“不可见”根节点并通过 id 或数组索引引用子节点:

[
{id: 0, name: "root", children: [1, 2]},
{id: 1, name: "abs", children: [3, 4]},
{id: 2, name: "fer", children: [5, 6]},
{id: 3, name: "jhg", children: [...]},
{id: 4, name: "AAA", children: [...]},
...
]

然后你可以像这样递归地设置它们的树深度:

function setDepth(node, depth) {
if (node._gridX && node._gridX >= depth) {
// node has been visited already through a path of greater or equal length
// so tree depths wouldn't change
return
}
node._gridX = depth
node.children
.map(idx => nodeArray[idx]) // get the actual objects from indices
.forEach(child => setDepth(child, depth+1))
}
setDepth(nodeArray[0], 0) // start at root

...不过要小心,因为如果您的节点有任何循环,此算法将陷入循环

关于javascript - 有向无环层次图实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56541266/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com