摘要:题目链接这道题和是一个思路,一个初始化为,每次有新的就两个节点,如果两个节点原来不在一个连通图里面就减少并且连起来,如果原来就在一个图里面就不管。用一个索引来做,优化就是加权了,每次把大的树的当做,小的树的作为。
323. Number of Connected Components in an Undirected Graph
题目链接:https://leetcode.com/problems...
这道题和numbers of islands II 是一个思路,一个count初始化为n,union find每次有新的edge就union两个节点,如果两个节点(u, v)原来不在一个连通图里面就减少count并且连起来,如果原来就在一个图里面就不管。用一个索引array来做,union find优化就是加权了,每次把大的树的root当做parent,小的树的root作为child。
public class Solution { public int countComponents(int n, int[][] edges) { // union find int count = n; // array to store parent init(n, edges); for(int[] edge : edges) { int root1 = find(edge[0]); int root2 = find(edge[1]); if(root1 != root2) { union(root1, root2); count--; } } return count; } int[] map; private void init(int n, int[][] edges) { map = new int[n]; for(int[] edge : edges) { map[edge[0]] = edge[0]; map[edge[1]] = edge[1]; } } private int find(int child) { while(map[child] != child) child = map[child]; return child; } private void union(int child, int parent) { map[child] = parent; } }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/66652.html
摘要:算法链接学习工具,,环境搭建在小伙伴的推荐下,这个学期开始上普林斯顿的算法课。一系列的整数对代表与相互连接,比如等,每一个整数代表了一个。我觉得这个可能也是并查集相关应用。这学期继续学习深入理解了就能明白了。 《算法》链接:1.5 Case Study: Union-Find学习工具:mac,java8,eclipse,coursera 环境搭建在小伙伴的推荐下,这个学期开始上普林斯顿...
摘要:感谢您的阅读如果喜欢这篇文章请点赞。它对我意义重大,它能帮助其他人看到这篇文章。对于更高级的文章,你可以在或上跟随我。 I’ve worked with Angular.js for a few years and despite the widespread criticism I think this is a fantastic framework. I’ve started w...
Find the number connected component in the undirected graph. Each node in the graph contains a label and a list of its neighbors. (a connected component (or just component) of an undirected graph is a...
阅读 1854·2021-11-15 11:46
阅读 1051·2021-10-26 09:49
阅读 1795·2021-10-14 09:42
阅读 3353·2021-09-26 09:55
阅读 810·2019-08-30 13:58
阅读 993·2019-08-29 16:40
阅读 3431·2019-08-26 10:27
阅读 583·2019-08-23 18:18