码迷,mamicode.com
首页 >  
搜索关键字:连通块    ( 701个结果
并查集(判断一个图有几个连通块)
import java.util.Scanner; // 并查集 判断一个图中有几个联通块 public class UnionFind { private int[] father;// private int count;// 分量数量 public UnionFind(int N){ count=N; father=new int[N]; for(int i=0;i<N...
分类:其他好文   时间:2014-05-11 03:03:44    阅读次数:308
701条   上一页 1 ... 69 70 71
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!