Skip to content

Commit 01d1f4a

Browse files
Update
1 parent 83e08f4 commit 01d1f4a

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

problems/0094.二叉树的中序遍历.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ https://leetcode-cn.com/problems/binary-tree-inorder-traversal/
33

44
## 思路
55

6-
题号:94,144,145 一起做一下
6+
094.二叉树的中序遍历
7+
144.二叉树的前序遍历
8+
145.二叉树的后序遍历
9+
建议一起做一下
710

811
## C++代码
912

problems/0144.二叉树的前序遍历.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ https://leetcode-cn.com/problems/binary-tree-preorder-traversal/
33

44
## 思路
55

6+
094.二叉树的中序遍历
7+
144.二叉树的前序遍历
8+
145.二叉树的后序遍历
9+
建议一起做一下
10+
611
实现树的遍历有使用递归和使用栈两种思路
712

813
## C++代码

problems/0145.二叉树的后序遍历.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ https://leetcode-cn.com/problems/binary-tree-postorder-traversal/
33

44
## 思路
55

6-
题号:94,144,145 一起做一下
6+
094.二叉树的中序遍历
7+
144.二叉树的前序遍历
8+
145.二叉树的后序遍历
9+
10+
建议一起做一下
711

812
## C++代码
913

0 commit comments

Comments
 (0)