摘要:
并查集(Disjoint-set data structure):不交集数据结构 处理一些不交集(Disjoint sets,一系列没有重复元素的集合)和合并与查询 1. 并查集支持的操作 1.1 查询 查询某个元素属于哪个集合,通常返回集内的一个 ”代表元素“。 > 为了判断2个元素是否在同一集合 阅读全文
摘要:
ACM二维数组的读取 输入 5 5 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 读取 Scanner in = new Scanner(System.in); int row = in.nextInt(); int col = in.nextI 阅读全文