Skip to content
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

Morris Preorder Traversal of a Binary Tree #187

Closed
naresh04122005 opened this issue Oct 1, 2024 · 3 comments
Closed

Morris Preorder Traversal of a Binary Tree #187

naresh04122005 opened this issue Oct 1, 2024 · 3 comments
Assignees
Labels
DSA good first issue Good for newcomers Hacktoberfest contribute for hacktoberfest 2024

Comments

@naresh04122005
Copy link

Problem Statement: Given a Binary Tree, implement Morris Preorder Traversal and return the array containing its preorder sequence.

Morris Preorder Traversal is a tree traversal algorithm aiming to achieve a space complexity of O(1) without recursion or an external data structure. The algorithm should efficiently visit each node in the binary tree in preorder sequence, printing or processing the node values as it traverses, without using a stack or recursion.

@naresh04122005
Copy link
Author

please assign this issue to me

@Utkarsh-Aggarwal
Copy link
Contributor

i am 2nd year student paving my way to open source .please assign it to me

@Saloni6111 Saloni6111 added good first issue Good for newcomers Hacktoberfest contribute for hacktoberfest 2024 DSA labels Oct 2, 2024
@Saloni6111
Copy link
Owner

please assign this issue to me

@naresh04122005 assigned!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DSA good first issue Good for newcomers Hacktoberfest contribute for hacktoberfest 2024
Projects
None yet
Development

No branches or pull requests

3 participants