鱼C论坛

 找回密码
 立即注册
查看: 1148|回复: 1

[技术交流] C++刷leetcode(323. 无向图中连通分量的数目)【并查集】

[复制链接]
发表于 2020-4-10 23:12:23 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 糖逗 于 2020-5-8 17:35 编辑

题目描述:
给定编号从 0 到 n-1 的 n 个节点和一个无向边列表(每条边都是一对节点),请编写一个函数来计算无向图中连通分量的数目。

示例 1:

输入: n = 5 和 edges = [[0, 1], [1, 2], [3, 4]]

     0          3
     |          |
     1 --- 2    4 

输出: 2
示例 2:

输入: n = 5 和 edges = [[0, 1], [1, 2], [2, 3], [3, 4]]

     0           4
     |           |
     1 --- 2 --- 3

输出:  1
注意:
你可以假设在 edges 中不会出现重复的边。而且由于所以的边都是无向边,[0, 1] 与 [1, 0]  相同,所以它们不会同时在 edges 中出现。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/number-of-connected-components-in-an-undirected-graph
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。



#include <iostream>
#include <vector>

using namespace std;

vector<int> parent;
vector<int> len;
int count;

//寻找根节点 
int FindRoot(int x){
        while(parent[x] != x){
                parent[x] = parent[parent[x]];
                x = parent[x];
        }
        return x;
}


void Union(int x, int y){
        int rootX = FindRoot(x);
        int rootY = FindRoot(y);
        if(rootX == rootY) return;
        if(len[rootX] >= len[rootY]){
                parent[rootY] = rootX;
                len[rootX] += len[rootY];
        }
        else{
                parent[rootX] = rootY;
                len[rootY] += len[rootX];
        }
        count--;
}


int solution(int n, vector<vector<int> >& edge){
        count = n;
        //初始化parent
        for(int i = 0; i < n; i++){
                parent.push_back(i);
                len.push_back(1);
        } 
        for(auto e : edge){
                Union(e[0], e[1]);
        }
        return count;
}



int main(void){
        int n;
        cout << "send the total number of nodes" << endl;
        cin >> n;
        cin.clear();
        cout << "send the row for the input vector" << endl; 
        int row;
        cin >> row;
        cin.clear();
        vector<vector<int> > input;
        input.resize(row);
        int number; 
        for(int i = 0; i < row; i++){
                for(int j = 0; j < 2; j++){
                        cin >> number;
                        input[i].push_back(number);
                } 
        }
        
        int res = solution(n, input);
        cout << res << endl;
        
        return 0;
} 



注意事项:
1.并查集,参考视频:https://www.bilibili.com/video/B ... 4500170862695587041
2.参考代码:https://leetcode-cn.com/problems ... jie-fa-by-kingpray/
3.并查集是常用的判断图中是否有环的数据结构

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-11 09:06:23 | 显示全部楼层
都跟你说了弄成悬赏贴(跟zltzlt的Python每日一题那样的,不过鱼币不用太多)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 06:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表