codeIIEST / Algorithms

A Repository to store implementation of some of the famous Data Structures and Algorithms (mainly in C/C++/Java/Python) for everyone to learn and contribute.
http://codeiiest.github.io/Algorithms/
MIT License
202 stars 161 forks source link

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

Open MuskanSapolia opened 6 years ago

MuskanSapolia commented 6 years ago

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 commented 6 years ago

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

Jatin86400 commented 6 years ago

I would code in c++

prateekiiest commented 6 years ago

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

Jatin86400 commented 6 years ago

ok

prateekiiest commented 6 years ago

pls post this issue link in your corresponding PRs

promaroy commented 4 years ago

Can I work on this issue?