最近在学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?
以上