摘要: 数据结构学习之二叉树的遍历 Python 实现 先序遍历 中序遍历 后续遍历 层序遍历 # 构建二叉树 class binTree: """ Created on 2020年10月27日 Coding by yadon """ def __init__(self, val): self.val = 阅读全文
posted @ 2020-11-02 21:42 yadonx 阅读(240) 评论(0) 推荐(0)