Skip to content

Commit 8553fef

Browse files
committed
readme
1 parent a13e8a6 commit 8553fef

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
#### 105 Construct Binary Tree from Preorder and Inorder Traversal
77
* [Github:#105 Construct Binary Tree from Preorder and Inorder Traversal](/Tree/Tree.TreeLib/BuildTreeByPreAndInorder.cs)
88
* [CSDN:#105 Construct Binary Tree from Preorder and Inorder Traversal](http://blog.csdn.net/daigualu/article/details/72127022)
9-
9+
* Tips:
10+
* the most important function in solving this issue is
11+
* private TreeNode bulidTree(int preStart, int inStart, int inEnd) ;
12+
* Plus, preStart index in preorder is the root index, which is also the separate point in inorder and it’s left is left subtree and right is right subtree.
1013
---
1114
---
1215

0 commit comments

Comments
 (0)