-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBinaryTreeInorderTraversal.py
More file actions
72 lines (62 loc) · 1.62 KB
/
Copy pathBinaryTreeInorderTraversal.py
File metadata and controls
72 lines (62 loc) · 1.62 KB
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
# -*- coding: UTF-8 -*-
#
# Given a binary tree, return the inorder traversal of its nodes' values.
#
# For example:
# Given binary tree [1,null,2,3],
# 1
# \
# 2
# /
# 3
# return [1,3,2].
#
# Note: Recursive solution is trivial, could you do it iteratively?
#
# Python, Python 3 all accepted.
class BinaryTreeInorderTraversal:
# Recursive solution.
# def inorderTraversal(self, root):
# """
# :type root: TreeNode
# :rtype: List[int]
# """
# results = []
# if root is None:
# return results
#
# if root.left is not None:
# results.extend(self.inorderTraversal(root.left))
#
# results.append(root.val)
#
# if root.right is not None:
# results.extend(self.inorderTraversal(root.right))
#
# return results
# Iterative solution.
def inorderTraversal(self, root):
"""
:type root: TreeNode
:rtype: List[int]
"""
result = []
if root is None:
return result
stack = []
while root is not None or len(stack) != 0:
while root is not None:
stack.append(root)
root = root.left
root = stack[len(stack) - 1]
del stack[len(stack) - 1]
result.append(root.val)
root = root.right
return result
class TreeNode(object):
def __init__(self, x):
self.val = x
self.left = None
self.right = None
def __eq__(self, other):
return self.val == other.val and self.left == other.left and self.right == other.right