如何在java中实现Graphs(Dta结构)?

时间:2016-10-12 05:48:06

标签: java graph

实现图表的方法有多少?请分享一下这个例子吗?

2 个答案:

答案 0 :(得分:0)

有很多...... 一个

Class Graph<T>{
   T data;
   List<Graph<T>> adjacentNodes;
}

两个阵列

int a[][] = new int[10][10];
markThedistance if there's a link between i and j in a[i][j]

答案 1 :(得分:0)

使用树状结构:

  

类节点{       List children = new ArrayList&lt;&gt;(); }