首页 > 其他分享 >JGraphT

JGraphT

时间:2023-09-09 18:12:09浏览次数:36  
标签:use demo us JGraphT your jgrapht

Introduction(简介)

JGraphT is a free Java class library that provides mathematical graph-theory objects and algorithms. It runs on Java 2 Platform (requires JDK 11 or later starting with JGraphT 1.5.0).

Getting Started(开始上手)

The JGraphT wiki provides various helpful pages for new users, including a How to use JGraphT in your projects page. The package org.jgrapht.demo includes small demo applications to help you get started. If you spawn your own demo app and think others can use it, please send it to us and we will add it to that package.

To run the graph visualization demo from the downloaded release, try executing this command in the lib directory:

java -jar jgrapht-demo-x.y.z.jar
 

More information can be found on the user pages of our wiki. Finally, all classes come with corresponding test classes. These test classes contain many examples.

To help us understand how you use JGraphT, and which features are important to you, tell us how you are using JGraphT, and cite the usage of JGraphT in your book, paper, website, or technical report.

github:https://github.com/jgrapht/jgrapht

官网:https://jgrapht.org/

标签:use,demo,us,JGraphT,your,jgrapht
From: https://www.cnblogs.com/2008nmj/p/17689937.html

相关文章

  • JGraphT计算关键路径
    简介JGraphT是一个Java实现的图论数据结构和算法库。本文讲介绍通过JGaphT来计算关键路径。关键路径:用于在进度模型中估算最短工期,关键路径是项目中时间最长的活动时间。案例描述下图Graph1-进度网络图表示项目的各项任务关系图以及任务的预计工期。为了采用图计算,这里将任务的预......