-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy pathConstruct Binary Tree from Preorder and Inorder Traversal.cpp
74 lines (63 loc) · 1.69 KB
/
Construct Binary Tree from Preorder and Inorder Traversal.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
Construct Binary Tree from Preorder and Inorder Traversal
=========================================================
Given preorder and inorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
For example, given
preorder = [3,9,20,15,7]
inorder = [9,3,15,20,7]
Return the following binary tree:
3
/ \
9 20
/ \
15 7
*/
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution
{
TreeNode *helper(vector<int> &inorder, vector<int> &preorder, int inS, int inE, int preS, int preE)
{
if (inS > inE || preS > preE)
return nullptr;
int rootData = preorder[preS];
int inIndex = -1;
for (int i = inS; i <= inE; ++i)
{
if (rootData == inorder[i])
{
inIndex = i;
break;
}
}
int lPreS = preS + 1;
int lInS = inS;
int rPreE = preE;
int rInE = inE;
int lInE = inIndex - 1;
int lPreE = lInE - lInS + lPreS;
int rPreS = lPreE + 1;
int rInS = inIndex + 1;
TreeNode *root = new TreeNode(rootData);
root->left = helper(inorder, preorder, lInS, lInE, lPreS, lPreE);
root->right = helper(inorder, preorder, rInS, rInE, rPreS, rPreE);
return root;
}
public:
TreeNode *buildTree(vector<int> &preorder, vector<int> &inorder)
{
int n = inorder.size();
return helper(inorder, preorder, 0, n - 1, 0, n - 1);
}
};