摘要: 并查集框架结构: class UF { int count; int[] parent; int[] size; public UF(int n) { this.count = n; this.parent = new int[n]; this.size = new int[n]; for(int 阅读全文
posted @ 2021-05-10 13:59 闪闪的星光 阅读(84) 评论(0) 推荐(0)