-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstructBST.java
More file actions
52 lines (48 loc) · 1.43 KB
/
ConstructBST.java
File metadata and controls
52 lines (48 loc) · 1.43 KB
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
// Construct BST
// Send Feedback
// Given a sorted integer array A of size n, which contains all unique elements.
// You need to construct a balanced BST from this input array. Return the root
// of constructed BST.
// Note: If array size is even, take first mid as root.
// Input format:
// The first line of input contains an integer, which denotes the value of n.
// The following line contains n space separated integers, that denote the
// values of array.
// Output Format:
// The first and only line of output contains values of BST nodes, printed in
// pre order traversal.
// Constraints:
// Time Limit: 1 second
// Sample Input 1:
// 7
// 1 2 3 4 5 6 7
// Sample Output 1:
// 4 2 1 3 6 5 7
public class Solution {
/*
* Binary Tree Node class
*
* class BinaryTreeNode<T> {
* T data;
* BinaryTreeNode<T> left;
* BinaryTreeNode<T> right;
*
* public BinaryTreeNode(T data) {
* this.data = data;
* }
* }
*/
public static BinaryTreeNode<Integer> helper(int[] arr, int si, int ei) {
if (si > ei) {
return null;
}
int mid = (si + ei) / 2;
BinaryTreeNode<Integer> root = new BinaryTreeNode<>(arr[mid]);
root.left = helper(arr, si, mid - 1);
root.right = helper(arr, mid + 1, ei);
return root;
}
public static BinaryTreeNode<Integer> SortedArrayToBST(int[] arr, int n) {
return helper(arr, 0, n - 1);
}
}