I have a tree structure in C
Node {
int info;
Node *left;
Node *right;
}
A binary tree made from nodes. Now I want to print the tree floor by floor. ex:
1
2 7
1 8 7 0
How can I do that?
I have a tree structure in C
Node {
int info;
Node *left;
Node *right;
}
A binary tree made from nodes. Now I want to print the tree floor by floor. ex:
1
2 7
1 8 7 0
How can I do that?
Copyright © 2021 Jogjafile Inc.
You can simply use BFS (Breadth-First-Search) Algorithm. Start with root add its children to a Queue. print root itself. Now do the same with the Top element in the Queue. Here is a Pseudo-Code for you
If you want to know more about BFS, you can check the following likns:
https://www.princeton.edu/~achaney/tmve/wiki100k/docs/Breadth-first_search.html
http://www.ics.uci.edu/~eppstein/161/960215.html
https://www.youtube.com/watch?v=QRq6p9s8NVg