List of Java APIs for graph/network data structures

前端 未结 4 768
迷失自我
迷失自我 2020-12-30 11:41

What are some good Java APIs for working with graphs (edges/nodes) as data structures?

Please add references to similar SO questions in comments to this wiki. Ple

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-30 12:42

    JDSL - JDSL is the Data Structures Library in Java. It is a collection of Java interfaces and classes that implement fundamental data structures and algorithms, such as:

    • sequences, trees, priority queues, search trees, hash tables
    • sorting and searching algorithms
    • graphs
    • graph traversals, shortest path, minimum spanning tree

    (JDSL does not appear to support generics)

提交回复
热议问题