Traverse a Binary Tree | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Traverse a Binary Tree

So, I have been trying to figure out the simplest way of doing this, my teacher had asked me to figure it out today, and I don't know if it is because I am hungover or not but after Six Hours I am just confused. can someone help me to figure out, not only how to create a binary tree but how to traverse it?

30th Jun 2016, 4:25 AM
The Beanz (UchihaKite)
The Beanz (UchihaKite) - avatar
8 Answers
+ 2
It can be traversed by three ways. Inorder,Preorder&Postorder
30th Jun 2016, 6:37 AM
Desik
Desik - avatar
+ 1
It is created using self-pointers. And it is traversed using recursion.
30th Jun 2016, 6:35 AM
Desik
Desik - avatar
+ 1
The pre-, in-, and post-order example : void traverse(Node* node) { doStuff(node->data); // pre order traverse(node->left); doStuff(node->data); // in order traverse(node->right); doStuff(node->data); // post order } You could also store data from the nodes you visited before so you can access it in the execution of doStuff.
30th Jun 2016, 11:57 AM
Stefan
Stefan - avatar
+ 1
You could do that or maybe use a stack?
30th Jun 2016, 12:43 PM
Stefan
Stefan - avatar
0
@Desik would it be possible for an example? Like, I think I understand, just need a visual please. I'm a weird leaner, I apologize >.<
30th Jun 2016, 11:51 AM
The Beanz (UchihaKite)
The Beanz (UchihaKite) - avatar
0
@Stefan So....maybe make a structure, with a variable to hold some data, and a pointer to two structure for left and right...and three functions for the traversals? but when I create the structures in main, how do I differ the root node from the children?
30th Jun 2016, 12:07 PM
The Beanz (UchihaKite)
The Beanz (UchihaKite) - avatar
0
I feel as though this is a common programming moment where I am overcomplicating something, and I am going to face palm once I understand it lol
30th Jun 2016, 12:07 PM
The Beanz (UchihaKite)
The Beanz (UchihaKite) - avatar
0
I'll look up Stack, and work on this a little bit. I'll let you guys know how it goes! Thank you both for taking the time to help me out! :D
30th Jun 2016, 1:10 PM
The Beanz (UchihaKite)
The Beanz (UchihaKite) - avatar