BFS (breadth first search) search algorithm

by javadream on 09 Apr 11
0
 
481 downloads
0

BFS or breadth first search is a very common graph searching/traversing algorithm in graph theory. It is implemented using a queue. However, a recursive version is also possible. Current implementation in java makes use of Graph and Queue classes developed previously.

Bookmark and Share

Relevant links

Related algorithms

You must login or register to post comments