Java图表类库 JUNG

码农软件 · 软件分类 · 报表/图表制作 · 2019-08-22 09:13:25

软件介绍

JUNG(Java Universal Network/Graph framework)是一个Java开源项目,其目的在于为开发关于图或网络结构的应用程序提供一个易用、通用的基础架构。使用JUNG功能调用,可以方便的构造图或网络的数据结构,应用经典算法(如聚类、最短路径,最大流量等),编写和测试用户自己的算法,以及可视化的显示数据的网络图。本文使用尽可能简明的代码示范基于JUNG应用开发方法,希望对有开发复杂网络/图应用需求的编程人员有所帮助。

JavaDoc 文档:http://jung.sourceforge.net/doc/api/index.html

示例代码:

Graph g = new SparseGraph();
Vertex v1 = g.addVertex( new SparseVertex());
Vertex v2 = g.addVertex( new SparseVertex());
g.addEdge( new UndirectedSparseEdge( v1, v2 ));
g.addEdge( new UndirectedSparseEdge( v1, v2 ));

本文地址:https://codercto.com/soft/d/12905.html

Algorithms Unlocked

Algorithms Unlocked

Thomas H. Cormen / The MIT Press / 2013-3-1 / USD 25.00

Have you ever wondered how your GPS can find the fastest way to your destination, selecting one route from seemingly countless possibilities in mere seconds? How your credit card account number is pro......一起来看看 《Algorithms Unlocked》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

URL 编码/解码
URL 编码/解码

URL 编码/解码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具