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

Pre, Post and In order traversal of binary trees #171

Open
MuskanSapolia opened this issue Dec 11, 2017 · 6 comments
Open

Pre, Post and In order traversal of binary trees #171

MuskanSapolia opened this issue Dec 11, 2017 · 6 comments
Assignees

Comments

@MuskanSapolia
Copy link

MuskanSapolia commented Dec 11, 2017

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.

@Jatin86400
Copy link
Contributor

I would like to work on the pre order, post order and in order traversals in a binary tree

@Jatin86400
Copy link
Contributor

I would code in c++

@prateekiiest
Copy link
Member

I guess @Jatin86400 , you need to open a new issue for it, otherwise GitHub is not showing your name on the assign list

@Jatin86400
Copy link
Contributor

ok

@prateekiiest
Copy link
Member

pls post this issue link in your corresponding PRs

@promaroy
Copy link

Can I work on this issue?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants