Ai
7 Star 34 Fork 23

空無一悟/algorithms

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Main.java 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
空無一悟 提交于 2021-09-22 23:47 +08:00 . init
/***********************************************************
* @Description : 有向图环检测
* @author : 梁山广(Liang Shan Guang)
* @date : 2019/12/25 7:49
* @email : liangshanguang2@gmail.com
***********************************************************/
package Chapter13DirectedGraph.Section03CycleDetectAndDAG;
import Chapter02GraphExpress.Graph;
import Chapter02GraphExpress.ReadGraph;
public class Main {
private static void showResult(String filePath) {
Graph graph = new Graph(true);
ReadGraph.init(graph, filePath);
GraphDFSCycleDetectDirected cycleDetect = new GraphDFSCycleDetectDirected(graph);
System.out.println("当前图中" + (cycleDetect.hasCycle() ? "有" : "无") + "环");
}
public static void main(String[] args) {
// 1.无环
String filePath = "src/main/java/Chapter13DirectedGraph/Section03CycleDetectAndDAG/有向无权无权图.txt";
showResult(filePath);
// 2.有环
filePath = "src/main/java/Chapter13DirectedGraph/Section03CycleDetectAndDAG/有向无权有环图.txt";
showResult(filePath);
}
}
/**
* 顶点数V = 5, 边数E = 5
* 当前图中无环
* 顶点数V = 5, 边数E = 6
* 当前图中有环
*/
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lsgwr/algorithms.git
git@gitee.com:lsgwr/algorithms.git
lsgwr
algorithms
algorithms
master

搜索帮助