[算法导论] 树拓扑

本文探讨了算法导论中关于树拓扑的概念,通过实例解析输入与输出的关系。介绍了如何根据输入序列构建特定的树结构,并展示了如何进行序列化输出。对于提升编程能力和解决LeetCode等算法问题具有指导意义。
摘要由CSDN通过智能技术生成

输入  6

         1 2 1 3 3 (i+2与l[i]相连,其中i从1开始)

输出  4 5 6 1 3 2

数组 i ... (2~n)

f(i) ...

n = int(input())
l = list(map(int,input().split()))
#M = [[0]*(n+1) for _ in range(n+1)]
d = {}
stack = []
out = []
for i in range(2,n+1): #2...n
    if i not in d:
        d[i]=[]
    d[i].append(l[i-2])
    if l[i-2] not in d:
        d[l[i-2]]=[]
    d[l[i-2]].append(i)
print(d)
def parent(d):
    res = []
    for x in d:
        if len(d[x])==1:
            res.append(x)
            d[x]=[]
    return d,res
d,res = parent(d)
stack = res
while stack:
    p = stack.pop(0) #从左边pop(0)   ,   默认从末尾pop
    out.append(p)
    if p in d:
        d[p]=[]
    for x in d:
        if p in d[x]:
            d[x].remove(p)
            if len(d[x])==1:
                stack=stack+[x]
print(out)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

心心喵

喵喵(*^▽^*)

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值