forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 6
/
binary-tree-inorder-traversal.py
95 lines (88 loc) · 2.58 KB
/
binary-tree-inorder-traversal.py
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Time: O(n)
# Space: O(1)
#
# Given a binary tree, return the inorder traversal of its nodes' values.
#
# For example:
# Given binary tree {1,#,2,3},
# 1
# \
# 2
# /
# 3
# return [1,3,2].
#
# Note: Recursive solution is trivial, could you do it iteratively?
#
# Definition for a binary tree node
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
# Morris Traversal Solution
class Solution:
# @param root, a tree node
# @return a list of integers
def inorderTraversal(self, root):
result, prev, cur = [], None, root
while cur:
if cur.left is None:
result.append(cur.val)
prev = cur
cur = cur.right
else:
node = cur.left
while node.right and node.right != cur:
node = node.right
if node.right is None:
node.right = cur
cur = cur.left
else:
result.append(cur.val)
node.right = None
prev = cur
cur = cur.right
return result
# Time: O(n)
# Space: O(n)
# Stack Solution
class Solution2:
# @param root, a tree node
# @return a list of integers
def inorderTraversal(self, root):
result, stack, current, last_traversed = [], [], root, None
while stack or current:
if current:
stack.append(current)
current = current.left
else:
parent = stack[-1]
if parent.right in (None, last_traversed):
if parent.right is None:
result.append(parent.val)
last_traversed = stack.pop()
else:
result.append(parent.val)
current = parent.right
return result
class Solution3:
# @param root, a tree node
# @return a list of integers
def inorderTraversal(self, root):
result, stack, current = [], [], root
while stack or current:
if current:
stack.append(current)
current = current.left
else:
current = stack.pop()
result.append(current.val)
current = current.right
return result
if __name__ == "__main__":
root = TreeNode(1)
root.right = TreeNode(2)
root.right.left = TreeNode(3)
result = Solution().inorderTraversal(root)
print result