Skip to content

Commit e350616

Browse files
committed
Update 105_Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.cpp
1 parent 7fd1032 commit e350616

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

C/105_Construct_Binary_Tree_from_Preorder_and_Inorder_Traversal.cpp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@
22
/*
33
Given preorder and inorder traversal of a tree, construct the binary tree.
44
5-
Note:
6-
You may assume that duplicates do not exist in the tree.
5+
Note: You may assume that duplicates do not exist in the tree.
76
8-
Tag:
9-
Tree, Array, Depth-first-search
7+
Tag: Tree, Array, Depth-first-search
108
11-
Author:
12-
Xinyu Liu
9+
Author: Xinyu Liu
1310
*/
1411

1512
#include <iostream>

0 commit comments

Comments
 (0)