-
Notifications
You must be signed in to change notification settings - Fork 163
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
Pre, Post and In order traversal of binary trees #171
Comments
I would like to work on the pre order, post order and in order traversals in a binary tree |
I would code in c++ |
I guess @Jatin86400 , you need to open a new issue for it, otherwise GitHub is not showing your name on the assign list |
ok |
pls post this issue link in your corresponding PRs |
Can I work on this issue? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DESCRIPTION
Pre-order :-
visit the root node
traverse the left sub-tree
traverse the right sub-tree
In-order :-
traverse the left sub-tree
visit the root node
traverse the left sub-tree
Post-order :-
traverse the left sub-tree
traverse the right sub-tree
visit the root node
EXPECTED OUTCOME
all nodes of tree should be traversed.
The text was updated successfully, but these errors were encountered: