-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path116.swift
56 lines (53 loc) · 1.49 KB
/
116.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
/**
* Definition for a Node.
* public class Node {
* public var val: Int
* public var left: Node?
* public var right: Node?
* public var next: Node?
* public init(_ val: Int) {
* self.val = val
* self.left = nil
* self.right = nil
* self.next = nil
* }
* }
*/
class Solution {
func connect(_ root: Node?) -> Node? {
// 已经设置好的next指针会帮助后续的遍历
// 换句话说,后续的遍历可以利用已经设置好的next指针
// 对于每棵树,如果已经有next
// my.left.next = my.right; my.right.next = my.next.left
guard let left = root?.left, let right = root?.right else {
return root
}
left.next = right
if let next = root?.next {
right.next = next.left
}
connect(left)
connect(right)
return root
}
}
class Solution1 {
func connect(_ root: Node?) -> Node? {
guard let root = root else { return nil }
var queue = [root]
while !queue.isEmpty {
let count = queue.count
for i in 0..<count {
let node = queue.removeFirst()
if i < count - 1 {
node.next = queue.first
}
if node.left != nil {
queue.append(node.left!)
queue.append(node.right!)
}
}
}
return root
}
}