-
Notifications
You must be signed in to change notification settings - Fork 894
/
Copy pathsortedListToBST.swift
57 lines (49 loc) · 1.42 KB
/
sortedListToBST.swift
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
56
57
/**
* Question Link: https://leetcode.com/problems/convert-sorted-list-to-binary-search-tree/
* Primary idea: Convert the linked list to array, handle array using Divide and Conqure
* Time Complexity Per Action: O(N), Space Complexity: O(N)
*
*/
/**
* Definition for singly-linked list.
* public class ListNode {
* public var val: Int
* public var next: ListNode?
* public init(_ val: Int) {
* self.val = val
* self.next = nil
* }
* }
*/
/**
* Definition for a binary tree node.
* public class TreeNode {
* public var val: Int
* public var left: TreeNode?
* public var right: TreeNode?
* public init(_ val: Int) {
* self.val = val
* self.left = nil
* self.right = nil
* }
* }
*/
class Solution {
func sortedListToBST(_ head: ListNode?) -> TreeNode? {
var sortedArr: [Int] = []
var cur = head
while cur != nil {
sortedArr.append(cur!.val)
cur = cur!.next
}
return _helper(sortedArr, 0, sortedArr.count - 1)
}
private func _helper(_ sortedArr: [Int], _ left: Int, _ right: Int) -> TreeNode? {
guard left <= right else { return nil }
let mid = left + (right - left) >> 1
let root = TreeNode(sorted[mid])
root.left = _helper(sortedArr, left, mid - 1)
root.right = _helper(sortedArr, mid + 1, right)
return root
}
}