-
-
Notifications
You must be signed in to change notification settings - Fork 46.6k
/
Copy pathmorris_preorder_traversal.py
150 lines (121 loc) · 4.38 KB
/
morris_preorder_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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
"""
Problem Statement: Given a binary perform an preorder traversal using Morris Preorder
traversal algorithm. (Iterative version of Preorder traversal of tree)
https://www.geeksforgeeks.org/morris-traversal-for-preorder/
"""
class TreeNode:
"""
Class representing a node in a binary tree.
Attributes:
-----------
value : The value stored at the node.
left : Pointer to the left child node (default is None).
right : Pointer to the right child node (default is None).
"""
def __init__(self, value: int) -> None:
self.value = value
self.left: TreeNode | None = None
self.right: TreeNode | None = None
class BinaryTree:
"""
Class representing a binary tree.
>>> bt = BinaryTree()
>>> bt.insert(9)
>>> bt.insert(6)
>>> bt.insert(10)
>>> bt.insert(3)
>>> bt.insert(7)
>>> bt.insert(12)
>>> bt.insert(2)
>>> bt.insert(5)
>>> bt.insert(4)
>>> bt.morris_preorder_traversal()
[9, 6, 3, 2, 5, 4, 7, 10, 12]
"""
def __init__(self) -> None:
self.root: TreeNode | None = None
def insert(self, value: int) -> None:
"""
Insert a value into the binary tree.
Parameters:
-----------
value : The value to be inserted into the binary tree.
"""
if self.root is None:
self.root = TreeNode(value)
else:
self._insert_recursive(self.root, value)
def _insert_recursive(self, node: TreeNode, value: int) -> None:
"""
Helper function to insert a value recursively into the tree.
Parameters:
-----------
node : The current node in the binary tree.
value : The value to be inserted.
"""
if value < node.value:
if node.left is None:
node.left = TreeNode(value)
else:
self._insert_recursive(node.left, value)
elif node.right is None:
node.right = TreeNode(value)
else:
self._insert_recursive(node.right, value)
def _predecessor(self, node: TreeNode) -> TreeNode:
"""
Helper Function to return predecessor of the given node in a binary tree
Parameters:
-----------
node : A node in the binary tree.
Returns:
--------
The predecessor of the node passed in the parameter
"""
temp_node = node.left
while temp_node and temp_node.right and temp_node.right != node:
temp_node = temp_node.right
assert temp_node is not None, "Predecessor should not be None"
return temp_node
def morris_preorder_traversal(self) -> list[int]:
"""
Function for preorder traversal using morris preorder traversal.
Algorithm :
------------
First initialize current as root node.
while current node is not empty
If the current node has no left child.
print the current node.
point the current node to its right child
else.
find predecssor node of the current node.
if predecessor right child points to current node,
remove the link of the right child of predecessor node.
point the current node to its right child.
else,
print the current node
make the current node as the right child of the predecessor node.
point current node to its left child.
Returns:
--------
A list of integers representing the preorder traversal.
"""
preorder_traversal = []
current_node = self.root
while current_node:
if current_node.left is None:
preorder_traversal.append(current_node.value)
current_node = current_node.right
else:
predecessor_node = self._predecessor(current_node)
if predecessor_node.right == current_node:
predecessor_node.right = None
current_node = current_node.right
else:
preorder_traversal.append(current_node.value)
predecessor_node.right = current_node
current_node = current_node.left
return preorder_traversal
if __name__ == "__main__":
import doctest
doctest.testmod()