LeetCode: 226 Invert Binary Tree(easy)
摘要:
题目: Invert a binary tree. 4 / \ 2 7 / \ / \ 1 3 6 9 to 4 / \ 7 2 / \ / \ 9 6 3 1 代码: Invert a binary tree. 自己的(递归实现): 别人的: 自己的(使用队列,非递归实现): 非递归和递归的在Le 阅读全文
posted @ 2017-08-28 20:04 玲珑子 阅读(77) 评论(0) 推荐(0) 编辑