Is there a java library for standard graph theory algorithms like shortest paths etc. The algorithm that I am in particular looking for is finding the largest connected component in a graph.
Tarik
11.2k2 gold badges30 silver badges47 bronze badges
asked Oct 10, 2011 at 16:06
1 Answer 1
JUNG graph library should have this. If not then check JGraphT as well
Related SO post: Good Java graph algorithm library?
answered Oct 10, 2011 at 16:09
Comments
lang-java