二叉树的创建与递归和非递归遍历
摘要:
二叉树的常规操作就是遍历,这也是二叉树的基本功之一 class TreeNode(): def __init__(self, x): self.val = x self.left = None self.right = None class BinaryTree(object): def __ini 阅读全文
posted @ 2020-01-29 22:17 天池怪侠 阅读(422) 评论(0) 推荐(0) 编辑