【发布时间】:2023-03-03 09:29:21
【问题描述】:
我正在尝试创建一个包含树中所有可能路径的列表。我有以下结构(来自 DB 的子集):
text = """
1,Product1,INVOICE_FEE,
3,Product3,INVOICE_FEE,
7,Product7,DEFAULT,
2,Product2,DEFAULT,7
4,Product4,DEFAULT,7
5,Product5,DEFAULT,2
"""
其中的列是:ID、产品名称、发票类型、对父 ID 的引用。 我想创建包含所有可能路径的列表,如示例中所示:
[[Product1],[Product3],[Product7,Product2,Product5],[Product7,Product4]]
我做以下事情:
lines = [ l.strip() for l in text.strip().splitlines() ]
hierarchy = [ tuple(l.split(',')) for l in lines ]
parents = defaultdict(list)
for p in hierarchy:
parents[p[3]].append(p)
创建树然后我想找到所有路径:
def pathsMet(parents, node=''):
childNodes = parents.get(node)
if not childNodes:
return []
paths = []
for ID, productName, invoiceType, parentID in childNodes:
paths.append([productName] + pathsMet(parents, ID))
return paths
print(pathsMet(parents))
我得到的结果如下:
[['FeeCashFlow1'], ['FeeCashFlow3'], ['PrincipalCashFlow7', ['AmortisationCashFlow3', ['AmortisationCashFlow2']], ['AmortisationCashFlow4']]]
如何更正代码以获得以下输出:
[['FeeCashFlow1'], ['FeeCashFlow3'], ['PrincipalCashFlow7', 'AmortisationCashFlow3', 'AmortisationCashFlow2'], ['PrincipalCashFlow7','AmortisationCashFlow4']]
【问题讨论】:
标签: python algorithm recursion path tree