-
-
Notifications
You must be signed in to change notification settings - Fork 46.6k
Morris Preorder traversal #11776
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
kuntal0901
wants to merge
7
commits into
TheAlgorithms:master
from
kuntal0901:morris_preorder_traversal
+150
−0
Closed
Morris Preorder traversal #11776
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
e4a9f54
feat: Implemented Morris Inorder traversal for Binary tree
kuntal0901 c6f14ee
feat: Implemented Morris postorder traversal for Binary tree
kuntal0901 f08e77f
deleting unecessary files
kuntal0901 31bc93f
feat: Implemented Morris postorder traversal for Binary tree
kuntal0901 815b049
feat: Implemented Morris preorder traversal for Binary tree
kuntal0901 e667b8a
feat: Implemented Morris preorder traversal for Binary tree
kuntal0901 8c3783a
fix: code review changes
kuntal0901 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
168 changes: 168 additions & 0 deletions
168
data_structures/binary_tree/morris_preorder_traversal.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,168 @@ | ||||||||||||||||
""" | ||||||||||||||||
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 : int | ||||||||||||||||
The value stored at the node. | ||||||||||||||||
left : TreeNode | ||||||||||||||||
Pointer to the left child node (default is None). | ||||||||||||||||
right : TreeNode | ||||||||||||||||
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. | ||||||||||||||||
|
||||||||||||||||
Methods: | ||||||||||||||||
-------- | ||||||||||||||||
insert(value: int) -> None: | ||||||||||||||||
Insert a value into the binary tree following binary search tree (BST) rules. | ||||||||||||||||
|
||||||||||||||||
morris_preorder_traversal() -> List[int]: | ||||||||||||||||
Perform preorder traversal and return list of node values. | ||||||||||||||||
|
||||||||||||||||
|
||||||||||||||||
>>> 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 : int | ||||||||||||||||
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 : TreeNode | ||||||||||||||||
The current node in the binary tree. | ||||||||||||||||
value : int | ||||||||||||||||
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 : TreeNode | ||||||||||||||||
A node in the binary tree. | ||||||||||||||||
|
||||||||||||||||
Returns: | ||||||||||||||||
-------- | ||||||||||||||||
TreeNode: | ||||||||||||||||
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: | ||||||||||||||||
-------- | ||||||||||||||||
List[int]: | ||||||||||||||||
A list of integers representing the preorder traversal. | ||||||||||||||||
|
||||||||||||||||
|
||||||||||||||||
|
||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
See my comment on your previous PR: #11774 (comment) |
||||||||||||||||
""" | ||||||||||||||||
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() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think it's necessary to specify the methods in the docstring because the methods themselves should already be documented anyway.