Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java library for graph theory algorithms

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.

like image 431
I J Avatar asked Oct 09 '22 19:10

I J


1 Answers

JUNG graph library should have this. If not then check JGraphT as well

Related SO post: Good Java graph algorithm library?

like image 141
Aravind Yarram Avatar answered Oct 13 '22 11:10

Aravind Yarram