Skip to content

Commit 4628c0b

Browse files
committed
leetcode construct-binary-tree-from-preorder-and-postorder-traversal
1 parent a09513a commit 4628c0b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docs/14_树与二叉树/tree.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,3 +275,6 @@ class Queue(object): # 借助内置的 deque 我们可以迅速实现一个 Que
275275

276276
使用树的层序遍历我们能实现一个树的左右视图,比如从一个二叉树的左边能看到哪些节点。
277277
请你尝试做这个练习题 https://leetcode.com/problems/binary-tree-right-side-view/description/
278+
279+
根据二叉树的 前序和后序遍历,返回一颗完整的二叉树。
280+
https://leetcode.com/problems/construct-binary-tree-from-preorder-and-postorder-traversal/submissions/

0 commit comments

Comments
 (0)