How to implement graph data structure in java? Is there an existing library?

I would like to implement a graph data structure in java to maintain a graph of objects. How do I achieve this? Is there an accessible library that can help?

+7
source share
2 answers

Is there a readily available library which could help?

DSL is a data structure library in Java

JGraphT is a free Java charting library that provides mathematical graphology objects and algorithms.

JUNG is a universal Java / Graph Framework

+6
source

JUNG JGRAPH

And read this, can help you javax.swing.tree.TreeModel

+2
source

All Articles