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
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
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
|
|||||||||||||
|