Algorithms icon indicating copy to clipboard operation
Algorithms copied to clipboard

Pre, Post and In order traversal of binary trees

Open MuskanSapolia opened this issue 6 years ago • 6 comments

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.

MuskanSapolia avatar Dec 11 '17 19:12 MuskanSapolia

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

Jatin86400 avatar Dec 12 '17 14:12 Jatin86400

I would code in c++

Jatin86400 avatar Dec 12 '17 14:12 Jatin86400

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

prateekiiest avatar Dec 12 '17 14:12 prateekiiest

ok

Jatin86400 avatar Dec 12 '17 15:12 Jatin86400

pls post this issue link in your corresponding PRs

prateekiiest avatar Dec 29 '17 15:12 prateekiiest

Can I work on this issue?

promaroy avatar Jul 29 '19 19:07 promaroy