This commit is contained in:
youngyangyang04
2020-08-06 09:21:13 +08:00
parent db4172a2c2
commit cfa099e89d
3 changed files with 14 additions and 2 deletions

View File

@ -3,7 +3,10 @@ https://leetcode-cn.com/problems/binary-tree-inorder-traversal/
## 思路
题号94144145 一起做一下
094.二叉树的中序遍历
144.二叉树的前序遍历
145.二叉树的后序遍历
建议一起做一下
## C++代码

View File

@ -3,6 +3,11 @@ https://leetcode-cn.com/problems/binary-tree-preorder-traversal/
## 思路
094.二叉树的中序遍历
144.二叉树的前序遍历
145.二叉树的后序遍历
建议一起做一下
实现树的遍历有使用递归和使用栈两种思路
## C++代码

View File

@ -3,7 +3,11 @@ https://leetcode-cn.com/problems/binary-tree-postorder-traversal/
## 思路
题号94144145 一起做一下
094.二叉树的中序遍历
144.二叉树的前序遍历
145.二叉树的后序遍历
建议一起做一下
## C++代码