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.

I am looking for a Non recursive Depth first search algorithm for a non binary tree. Any help is very much appreciated.

share|improve this question
What exactly is a "non binary tree"? A graph? – Bart Kiers Mar 11 '11 at 21:33
4  
Depth first search is a recursive algorithm. The answers below are recursively exploring nodes, they are just not using the system's call stack to do their recursion, and are using an explicit stack instead. – Null Set Mar 11 '11 at 21:44
1  
@Null Set No, it's just a loop. By your definition, every computer program is recursive. (Which, in a certain sense of the word they are.) – biziclop Mar 11 '11 at 21:49
1  
@Null Set: A tree is also a recursive data structure. – Gumbo Mar 11 '11 at 21:51
1  
@Null Set That doesn't really matter in this case. Depending on which meaning of the word "recursion" you apply, either every computer program is recursive (computable) or just the ones that have functions that call themselves directly or indirectly. – biziclop Mar 11 '11 at 22:08
show 5 more comments

4 Answers

up vote 48 down vote accepted

DFS:

list nodes_to_visit = {root};
while( nodes_to_visit isn't empty ) {
  currentnode = nodes_to_visit.first();
  nodes_to_visit.prepend( currentnode.children );
  //do something
}

BFS:

list nodes_to_visit = {root};
while( nodes_to_visit isn't empty ) {
  currentnode = nodes_to_visit.first();
  nodes_to_visit.append( currentnode.children );
  //do something
}

The symmetry of the two is quite cool.

share|improve this answer
1  
+1 for noting how similar the two are when done non-recursively (as if they're radically different when they're recursive, but still...) – corsiKa Mar 11 '11 at 23:49
2  
And then to add to the symmetry, if you use a min priority queue as the fringe instead, you have a single-source shortest path finder. – Mark Peters Mar 12 '11 at 19:31
3  
BTW, the .first() function also removes the element from the list. Like shift() in many languages. pop() also works, and returns the child nodes in right-to-left order instead of left-to-right. – Ariel Jun 21 '11 at 3:57
great and simple answer! – Kim Jong Woo Oct 28 '11 at 12:36
Does this have any disadvantage to the recursive approach? E.g., stack size here is O(depth * degree), instead of just O(depth) with the recursion. But then each element of recursion's stack is at least O(degree) I think? – max Apr 16 '12 at 16:46
show 8 more comments

You would use a stack that holds the nodes that were not visited yet:

stack.push(root)
while !stack.isEmpty() do
    node = stack.pop()
    for each node.childNodes do
        stack.push(stack)
    endfor
    // …
endwhile
share|improve this answer
1  
Hero! Thanks!!! – Proud Member Apr 25 '11 at 20:20

If you have pointers to parent nodes, you can do it without additional memory.

def dfs(root):
    node = root
    while True:
        visit(node)
        if node.first_child:
            node = node.first_child      # walk down
        else:
            while not node.next_sibling:
                if node is root:
                    return
                node = node.parent       # walk up ...
            node = node.next_sibling     # ... and right

Note that if the child nodes are stored as an array rather than through sibling pointers, the next sibling can be found as:

def next_sibling(node):
    try:
        i =    node.parent.child_nodes.index(node)
        return node.parent.child_nodes[i+1]
    except (IndexError, AttributeError):
        return None
share|improve this answer
This is a good solution because it does not use additional memory or manipulation of a list or stack (some good reasons to avoid recursion). However it is only possible if the tree nodes have links to their parents. – joeytwiddle May 20 '12 at 23:42

Use a stack to track your nodes

Stack<Node> s;

s.prepend(tree.head);

while(!s.empty) {
    Node n = s.poll_front // gets first node

    // do something with q?

    for each child of n: s.prepend(child)

}
share|improve this answer
1  
that will result in bfs – Dave O. Mar 11 '11 at 21:41
@Dave O. No, because you push back the children of the visited node in front of everything that's already there. – biziclop Mar 11 '11 at 22:04
I must have misinterpreted the semantics of push_back then. – Dave O. Mar 11 '11 at 22:14
@Dave you have a very good point. I was thinking it should be "pushing the rest of the queue back" not "push to the back." I will edit appropriately. – corsiKa Mar 11 '11 at 22:33
If you're pushing to the front it should be a stack. – quasiverse Mar 11 '11 at 23:37
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.