forked from soapyigu/LeetCode-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BinaryTreeVerticalOrderTraversal.swift
61 lines (53 loc) · 1.71 KB
/
BinaryTreeVerticalOrderTraversal.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
58
59
60
61
/**
* Question Link: https://leetcode.com/problems/binary-tree-vertical-order-traversal/
* Primary idea: Use queues to hold TreeNode and column level, and a dictionary to
* map column with its correspond TreeNode vals
*
* Time Complexity: O(n), Space Complexity: O(n)
*
* 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 BinaryTreeVerticalOrderTraversal {
func verticalOrder(_ root: TreeNode?) -> [[Int]] {
var res = [[Int]](), qNodes = [TreeNode](), qVals = [Int]()
var colVals = [Int: [Int]](), minCol = 0, maxCol = 0
guard let root = root else {
return res
}
qNodes.append(root)
qVals.append(0)
while !qNodes.isEmpty {
let node = qNodes.removeFirst()
let col = qVals.removeFirst()
if colVals[col] != nil {
colVals[col]!.append(node.val)
} else {
colVals[col] = [node.val]
}
if let left = node.left {
qNodes.append(left)
qVals.append(col - 1)
minCol = min(minCol, col - 1)
}
if let right = node.right {
qNodes.append(right)
qVals.append(col + 1)
maxCol = max(maxCol, col + 1)
}
}
for col in minCol...maxCol {
res.append(colVals[col]!)
}
return res
}
}