-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArr_to_BST.java
More file actions
38 lines (33 loc) · 871 Bytes
/
Arr_to_BST.java
File metadata and controls
38 lines (33 loc) · 871 Bytes
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
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
public TreeNode sortedArrayToBST(int[] nums) {
if(nums==null || nums.length==0){
return null;
}
return bst(nums,0,nums.length-1);
}
private TreeNode bst(int nums[], int start, int end){
if(start>end){
return null;
}
int mid=(start+end)/2;
TreeNode curr = new TreeNode(nums[mid]);
curr.left=bst(nums,start,mid-1);
curr.right=bst(nums,mid+1,end);
return curr;
}
}