vote up 0 vote down star

Can someone explain Breadth-first search to solve the below kind of problems alt text

I need to find all the paths between 4 and 7

flag

en.wikipedia.org/wiki/Breadth-first_search – tvanfosson Apr 4 at 22:47
It is highly advisable to tag homework questions as such to avoid downvotes. – chaos Apr 4 at 22:52
I am not a cs student..in my daily work I wanted to use this algorithm to solve some problem to find all the paths – yesraaj Apr 4 at 22:58
Okay. In that case, the scanned homework problem you used as an example would tend to mislead people. – chaos Apr 4 at 22:59
I dont really mind marking it as homework or not..but i wanted to learn and apply as quickly as possible... – yesraaj Apr 4 at 23:00

5 Answers

vote up 3 vote down check

You look at all the nodes adjacent to your start node. Then you look at all the nodes adjacent to those (not returning to nodes you've already looked at). Repeat until satisfying node found or no more nodes.

For the kind of problem you indicate, you use the process described above to build a set of paths, terminating any that arrive at the desired destination node, and when your graph is exhausted, the set of paths that so terminated is your solution set.

link|flag
can you explain with pseudo code / c++ code so that i can learn how to do it – yesraaj Apr 4 at 22:56
It depends what you're doing it to. You really can't write pseudocode to do a breadth first search on dots. It just doesn't make a lot of sense. Websites would be a good way to think of it. Think about a list of links on a web page. – d03boy Apr 5 at 7:17
can you explain more? – yesraaj Apr 5 at 7:20
vote up 1 vote down

Think of it as websites with links to other sites on them. Let A be our root node or our starting website.

A is the starting page    (Layer 1)
A links to AA, AB, AC     (Layer 2)
AA links to AAA, AAB, AAC (Layer 3)
AB links to ABA, ABB, ABC (Layer 3)
AC links to ACA, ACB, ACC (Layer 3)

This is only three layers deep. You search one layer at a time. So in this case you would start at layer A. If that does not match you go to the next layer, AA, AB and AC. If none of those websites is the one you are searching for then you follow the links and go to the next layer. In other words, you look at one layer at a time.

A depth first search (its complement) you would go from A to AA to AAA. In other words you would go DEEP before going WIDE.

link|flag
vote up 1 vote down

BEGIN

4;

4,2;

4,2,1; 4,2,3; 4,2,5;

4,2,1;(fail) 4,2,3,6; 4,2,5,6; 4,2,5,11;

4,2,3,6,7;(pass) 4,2,3,6,8; 4,2,5,6,7;(pass) 4,2,5,6,8; 4,2,5,11,12;

4,2,3,6,8,9; 4,2,3,6,8,10; 4,2,5,6,8,9; 4,2,5,6,8,10; 4,2,5,11,12;(fail)

4,2,3,6,8,9;(fail) 4,2,3,6,8,10;(fail) 4,2,5,6,8,9;(fail) 4,2,5,6,8,10;(fail)

END

link|flag
how to implement this ? – yesraaj Apr 4 at 23:07
Traverse the graph in ways that have been described in other answers. – Kevin Crowell Apr 4 at 23:09
vote up 3 vote down

Breadth first search (BFS) means that you process all of your starting nodes' direct children, before going to deeper levels. BFS is implemented with a queue which stores a list of nodes that need to be processed.

You start the algorithm by adding your start node to the queue. Then you continue to run your algorithm until you have nothing left to process in the queue.

When you dequeue an element from the queue, it becomes your active node. When you are processing your active node, you add all of its children to the back of the queue. You terminate the algorithm when you have an empty queue.

Since you are dealing with a graph instead of a tree, you need to store a list of your processed nodes so you don't enter into a loop.

Once you reach node 7 you have a matching path and you can stop doing the BFS for that recursive path. Meaning that you simply don't add its children to the queue. To avoid loops and to know the exact path you've visited, as you do your recursive BFS calls, pass up the already visited nodes.

link|flag
"Once you reach": Incorrect. He needs to find all the paths that start at 4 and terminate at 7, not just one. – chaos Apr 4 at 22:54
@chaos: No since BFS is recursive, when you stop you are only stopping that one iteration. By stop I mean you don't add its children to the queue. You still need to process the rest of your queue. – Brian R. Bondy Apr 4 at 22:57
Ah, I see what you meant. – chaos Apr 4 at 22:58
@chaos: I probably was not completely clear in my wording, so I clarified more. Thanks for pointing this out. – Brian R. Bondy Apr 4 at 22:58
vote up 1 vote down

You test each node connected to the root node. Then you test each node connected to the previous nodes. So on, until you find your answer.

Basically, each iteration tests nodes that are the same distance away from the root node.

link|flag

Your Answer

Get an OpenID
or

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