forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_109.java
38 lines (31 loc) · 1.08 KB
/
_109.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
package com.fishercoder.solutions;
import com.fishercoder.common.classes.ListNode;
import com.fishercoder.common.classes.TreeNode;
/**
* 109. Convert Sorted List to Binary Search Tree
*
* Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.
*/
public class _109 {
public static class Solution1 {
public TreeNode sortedListToBST(ListNode head) {
return toBstRecursively(head, null);
}
public TreeNode toBstRecursively(ListNode start, ListNode end) {
if (start == end) {
return null;
} else {
ListNode mid = start;
ListNode fast = start;
while (fast != end && fast.next != end) {
mid = mid.next;
fast = fast.next.next;
}
TreeNode root = new TreeNode(mid.val);
root.left = toBstRecursively(start, mid);
root.right = toBstRecursively(mid.next, end);
return root;
}
}
}
}