I am looking for a Non recursive Depth first search algorithm for a non binary tree. Any help is very much appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
DFS:
BFS:
The symmetry of the two is quite cool. |
|||||||||||||||||
|
|
You would use a stack that holds the nodes that were not visited yet:
|
|||||
|
|
If you have pointers to parent nodes, you can do it without additional memory.
Note that if the child nodes are stored as an array rather than through sibling pointers, the next sibling can be found as:
|
|||
|
|
Use a stack to track your nodes
|
|||||||||||||
|