-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathBuildTreeByPreAndInorder.cs
57 lines (52 loc) · 1.76 KB
/
BuildTreeByPreAndInorder.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Tree.TreeLib
{
// // Given preorder and inorder traversal of a tree, construct the binary tree.
// // Note:
// // You may assume that duplicates do not exist in the tree.
public class Solution
{
private int[] _preorder; //preorder array
private int[] _inorder; //inorder array
public TreeNode BuildTree(int[] preorder, int[] inorder)
{
_preorder = preorder;
_inorder = inorder;
//if(_preorder.Length==0 || inorder.Length==0) return null;
//if(prorder.Length!=inorder.Length) return null;
return bulidTree(0,0,_inorder.Length-1);
}
//preStart: index of root of tree
//inStart: of inorder tree, inStart ~ root index - 1 -> left tree
//EndStart:of inorder tree, root index + 1 ~ inEnd -> right tree
private TreeNode bulidTree(int preStart, int inStart, int inEnd)
{
if (preStart > _preorder.Length - 1 || inStart > inEnd)
{
return null;
}
TreeNode root = new TreeNode(_preorder[preStart]);
// find the index of current root in inorder.
int inIndex = curRootIndex(inStart, inEnd, root);
root.left = bulidTree(preStart + 1, inStart, inIndex - 1);
//right subtree begins position in preorder
preStart += inIndex - inStart + 1;
root.right = bulidTree(preStart, inIndex + 1, inEnd);
return root;
}
private int curRootIndex(int inStart, int inEnd, TreeNode root)
{
for (int i = inStart; i <= inEnd; i++)
{
if (_inorder[i] == root.val)
{
return i;
}
}
return -1;
}
}
}