会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
DeepCoding
首页
订阅
管理
2020年12月23日
二叉树的遍历(python实现)
摘要: 一、层序遍历 1.使用队列实现 输入根节点,使用队列来遍历。先进的节点会先出去,出去时将自己的子节点放到队列中。 def level(root): if not root: return None queue=[root] res=[] while queue: node = queue.pop(0
阅读全文
posted @ 2020-12-23 22:44 爱睡觉的皮卡丘
阅读(257)
评论(0)
推荐(0)
编辑
公告