-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathConvertSortedListToBinarySearchTree.java
55 lines (51 loc) · 1.62 KB
/
ConvertSortedListToBinarySearchTree.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/*/
class Data
{
ListNode head;
ListNode mid;
ListNode prevMid;
TreeNode parent;
Data(ListNode head, TreeNode parent)
{
this.head = head;
this.parent = parent;
ListNode slow = head, fast = head;
while (fast != null && fast.next != null)
{
this.prevMid = slow;
slow = slow.next;
fast = fast.next.next;
}
this.mid = slow;
}
}
class Solution {
public TreeNode sortedListToBST(ListNode head) {
if (head == null) return null;
TreeNode root = null;
Stack<Data> dataStack = new Stack<Data>();
dataStack.push(new Data(head,null));
while (!dataStack.isEmpty())
{
Data curr = dataStack.pop();
TreeNode currNode = new TreeNode(curr.mid.val);
if (root == null) root = currNode;
else
{
if (currNode.val < curr.parent.val)
curr.parent.left = currNode;
else
curr.parent.right = currNode;
}
//if the right subtree has more than one nodes then push the right subtree range
if (curr.mid.next != null) dataStack.push(new Data(curr.mid.next,currNode));
//if the left subtree has more than one nodes then push the left subtree range
if (curr.head != curr.mid)
{
curr.prevMid.next = null;
dataStack.push(new Data(curr.head,currNode));
}
}
return root;
}
}