摘要: 图的存储结构 邻接矩阵 适用于边数较多的情况,采用二维数组存储 // 邻接矩阵数组:w[from][to] = weight 代表从 from 到 to 有权重为 weight 的边 int[][] w = new int[N][N]; // 加边操作 void add(int from, int 阅读全文
posted @ 2021-08-24 18:03 gonghr 阅读(229) 评论(0) 推荐(0) 编辑