我有一个包含名字的元组的列表。这些名称是父名和子名,我希望用它们的名称创建层次字典树。例如,我有以下列表:
[('john','marry'),('mike','john'),('mike','hellen'),('john','elisa')]我想要创造这个:
{
'mike':{
'john':{
'marry':{}
'elisa':{}
}
'hellen':{}
}
}发布于 2017-08-02 12:54:36
假设它表现良好(没有循环,没有重复的名字,或者一个孩子有多个父母),你可以简单地使用一个“有向图”并遍历它。要查找根,我还使用了一个包含布尔值的字典,该字典指示名称是否有父级:
lst = [('john','marry'), ('mike','john'), ('mike','hellen'), ('john','elisa')]
# Build a directed graph and a list of all names that have no parent
graph = {name: set() for tup in lst for name in tup}
has_parent = {name: False for tup in lst for name in tup}
for parent, child in lst:
graph[parent].add(child)
has_parent[child] = True
# All names that have absolutely no parent:
roots = [name for name, parents in has_parent.items() if not parents]
# traversal of the graph (doesn't care about duplicates and cycles)
def traverse(hierarchy, graph, names):
for name in names:
hierarchy[name] = traverse({}, graph, graph[name])
return hierarchy
traverse({}, graph, roots)
# {'mike': {'hellen': {}, 'john': {'elisa': {}, 'marry': {}}}}发布于 2017-08-02 13:55:38
不管怎样,还有其他选择:
data = [('john','marry'),('mike','john'),('mike','hellen'),('john','elisa')]
roots = set()
mapping = {}
for parent,child in data:
childitem = mapping.get(child,None)
if childitem is None:
childitem = {}
mapping[child] = childitem
else:
roots.discard(child)
parentitem = mapping.get(parent,None)
if parentitem is None:
mapping[parent] = {child:childitem}
roots.add(parent)
else:
parentitem[child] = childitem
tree = {id : mapping[id] for id in roots}
print (tree)结果:
{'mike':
{
'hellen': {},
'john': {
'elisa': {},
'marry': {}}}}@WillemVanOnsem Recursively creating a tree hierarchy without using class/object信用卡
发布于 2017-08-02 13:11:21
def get_children(parent, relations):
children = (r[1] for r in relations if r[0] == parent)
return {c: get_children(c, relations) for c in children}
the_list = [('john','marry'),('mike','john'),('mike','hellen'),('john','elisa')]
parents, children = map(set, zip(*the_list))
the_tree = {p: get_children(p, the_list) for p in (parents - children)}
print(the_tree)https://stackoverflow.com/questions/45460653
复制相似问题