-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0109-convert-sorted-list-to-binary-search-tree.js
52 lines (46 loc) · 1.25 KB
/
0109-convert-sorted-list-to-binary-search-tree.js
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
/**
* 109. Convert Sorted List to Binary Search Tree
* https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/
* Difficulty: Medium
*
* Given the head of a singly linked list where elements are sorted in ascending order,
* convert it to a height-balanced binary search tree.
*/
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {ListNode} head
* @return {TreeNode}
*/
var sortedListToBST = function(head) {
if (!head) return null;
if (!head.next) return new TreeNode(head.val);
let fast = head;
let slow = head;
let previous = head;
while (fast && fast.next) {
previous = slow;
slow = slow.next;
fast = fast.next.next;
}
const root = new TreeNode(slow.val);
previous.next = null;
const newHead = slow.next;
slow.next = null;
root.left = sortedListToBST(head);
root.right = sortedListToBST(newHead);
return root;
};