添加 Swift 代码实现

pull/34/head
frank-tian 2021-07-19 23:54:09 +08:00
parent acc662b89a
commit da6ec4e14f
1 changed files with 31 additions and 0 deletions

View File

@ -102,3 +102,34 @@ class Solution {
}
```
Swift Code
```swift
class Solution {
func inorderTraversal(_ root: TreeNode?) -> [Int] {
var list:[Int] = []
guard root != nil else {
return list
}
var p1 = root, p2: TreeNode?
while p1 != nil {
p2 = p1!.left
if p2 != nil {
while p2!.right != nil && p2!.right !== p1 {
p2 = p2!.right
}
if p2!.right == nil {
p2!.right = p1
p1 = p1!.left
continue
} else {
p2!.right = nil
}
}
list.append(p1!.val)
p1 = p1!.right
}
return list
}
}
```