[graph] Breadth-Fist Search library to commons graph?

2013-09-20 Thread Rodion Efremov
Hello, might it be funky to have a few esoteric BFS-algorithms from [1]? :^) -- TIA, Rodion [1] https://github.com/coderodde/bfsbuddy - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands,

Re: [graph] Breadth-Fist Search library to commons graph?

2013-09-20 Thread Simone Tripodi
Hi Rodion, BFS is already implemented in commons-graph[1] you can provide a GraphVisitHandler[2] implementation to handle the case when you have found the target node, so the search is now complete. HTH, -Best [1]