-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1382.balance-a-binary-search-tree.java
41 lines (36 loc) · 1.1 KB
/
1382.balance-a-binary-search-tree.java
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
/*
* @lc app=leetcode id=1382 lang=java
*
* [1382] Balance a Binary Search Tree
*/
// @lc code=start
/**
* 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 {
List<TreeNode> sortedArr = new ArrayList<>();
public TreeNode balanceBST(TreeNode root) {
inorderTraverse(root);
return sortedArrayToBST(0, sortedArr.size() - 1);
}
void inorderTraverse(TreeNode root) {
if (root == null)
return;
inorderTraverse(root.left);
sortedArr.add(root);
inorderTraverse(root.right);
}
TreeNode sortedArrayToBST(int start, int end) {
if (start > end)
return null;
int mid = (start + end) / 2;
TreeNode root = sortedArr.get(mid);
root.left = sortedArrayToBST(start, mid - 1);
root.right = sortedArrayToBST(mid + 1, end);
return root;
}
}
// @lc code=end