[问题] 关于list用于tree的表示

楼主: e12518166339 (耐纶)   2017-10-01 16:02:11
最近在学python顺便重看algo的书籍
目前看到第六章这个部份
http://interactivepython.org/runestone/static/pythonds/Trees/ListofListsRepresentation.html
我的疑问是
def insertLeft(root,newBranch):
t = root.pop(1)
if len(t) > 1:
root.insert(1,[newBranch,t,[]])
else:
root.insert(1,[newBranch, [], []])
return root
他先确定了右边节点是否为空
只是if len(t) > 1 时的作法是否应是
root.insert(1,[t,newBranch,[]]) 才是?
因为不为空,表示左子树的根应该为t本身,而不是newBranch?
以上
作者: zerof (猫橘毛发呆雕像)   2017-10-01 16:42:00
他是 append 在 LTree 的 root
楼主: e12518166339 (耐纶)   2017-10-01 16:51:00
我后来看下一章的例子发现,是我搞错语意

Links booklink

Contact Us: admin [ a t ] ucptt.com