gpt4 book ai didi

python - 构建一棵树 "backwards"

转载 作者:行者123 更新时间:2023-12-01 06:01:33 29 4
gpt4 key购买 nike

我需要在 Python 中创建一个树状结构。我有一个函数 get(parentId),它返回具有该父级的对象列表——我认为应该递归地完成。

结果应该是这样的:["root object", ["child1 of root", "child2 of root", ["child2-1", "child2-2"]]]

每个对象都有一个属性parent,它是get()的parentId,但作为起点,我只有根对象。

最佳答案

假设您仍然对树的列表表示感兴趣(这不一定是无用的事情),这是一个递归函数定义,我相信它可以满足您的需要(前提是 get() 函数确实之前已定义):

def build_tree(node):
return [node,[build_tree(child) for child in get(node)]]

您可以通过类似于以下的方式使用它:

root = 1  # or whatever other representation you may use for root
list = build_tree(root)
print list

关于python - 构建一棵树 "backwards",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10161440/

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