2

Possible Duplicate:
Good Java graph algorithm library?

Is there a complete library in Java that implements several Graph algorithmic problems, e.g. the clique problem

Thanks!

Community
  • 1
  • 1
kostaspap
  • 345
  • 4
  • 10

1 Answers1

1

I know of the following libraries:

  • the Java Universal Network/Graph Framewor,a library that provides a common and extendible language for the modeling, analysis, and visualization of data that can be represented as a graph or network.
  • salvo graph implementation, focusing on graph data structures.
  • last and less least, JGraphT, a big library that provides mathematical graph-theory objects and algorithms.

But I'm sure there are thousands more, for specific areas. If you have some particular application in mind, maybe post that in your question, too...

DaveFar
  • 7,078
  • 4
  • 50
  • 90