zoukankan      html  css  js  c++  java
  • (BFS DFS 并查集) leetcode 547. Friend Circles

    There are N students in a class. Some of them are friends, while some are not. Their friendship is transitive in nature. For example, if A is a directfriend of B, and B is a direct friend of C, then A is an indirect friend of C. And we defined a friend circle is a group of students who are direct or indirect friends.

    Given a N*N matrix M representing the friend relationship between students in the class. If M[i][j] = 1, then the ith and jth students are directfriends with each other, otherwise not. And you have to output the total number of friend circles among all the students.

    Example 1:

    Input: 
    [[1,1,0],
     [1,1,0],
     [0,0,1]]
    Output: 2
    Explanation:The 0th and 1st students are direct friends, so they are in a friend circle. 
    The 2nd student himself is in a friend circle. So return 2.

    Example 2:

    Input: 
    [[1,1,0],
     [1,1,1],
     [0,1,1]]
    Output: 1
    Explanation:The 0th and 1st students are direct friends, the 1st and 2nd students are direct friends, 
    so the 0th and 2nd students are indirect friends. All of them are in the same friend circle, so return 1.

    Note:

    1. N is in range [1,200].
    2. M[i][i] = 1 for all students.
    3. If M[i][j] = 1, then M[j][i] = 1.

    这个题的解法是有不唯一的。还有,这个题与那个统计油田的个数的BFS和DFS的模板题是不一样的。

    参考链接:http://www.cnblogs.com/grandyang/p/6686983.html

    第一种解法:

    BFS

    对于某个人,我们可以先遍历其好友(如果他有好友),然后再遍历好友的好友,一直继续下去,直到不能继续找到好友为止,可以找出一个朋友圈内的所有好友。接下来再对于还没有遍历的人,继续同样的方法,直到遍历完我所有人为止,此时,我们可以统计朋友圈的个数。注意,每当遍历到人时,要标记已经遍历过的。

    C++代码:

    class Solution {
    public:
        int findCircleNum(vector<vector<int>>& M) {
            queue<int> q;
            int m = M.size();
            int res = 0;
            vector<bool> vis(m,false);
            for(int i = 0; i < m; i++){
                if(vis[i] == true) continue;  //如果已经遍历过,就略过,因为这个人所在的朋友圈已经遍历了。
                q.push(i);
                while(!q.empty()){
                    int t = q.front();q.pop();
                    vis[t] = true;
                    for(int j = 0; j < m; j++){
                        if(M[t][j] && !vis[j]){
                            q.push(j);
                        }           
                    }
                }
                res++;
            }
            return res;
        }
    };

    第二种解法:

    DFS,思路和上面的BFS类似。

    class Solution {
    public:
        void dfs(vector<vector<int>> &M,int i,vector<bool> &vis){
            int m = M.size();
            vis[i] = true;  //把遍历到的人标记为已经遍历的。
            for(int j = 0; j < m; j++){
                if(M[i][j] == 1 && !vis[j]){
                    dfs(M,j,vis);
                }
            }
        }
        int findCircleNum(vector<vector<int>>& M) {
            int m = M.size();
            int res = 0;
            vector<bool> vis(m,false);
            for(int i = 0; i < m; i++){
                if(vis[i] == true) continue;
                dfs(M,i,vis);
                res++; //一路“莽”到底后,递增res,指的是朋友圈的个数的增加。
            }
            return res;
        }
    };

    第三种:

    并查集

    这个题可以用并查集。先初始化每个值,然后把同属于一个朋友圈的人并到一个根。统计并查集的个数。(emmmm,抱歉,我对于并查集的理解并不深刻。。。)

    C++代码:

    class Solution {
    public:
        int getRoot(vector<int> &root,int i){
            while(i != root[i]){
                root[i] = root[root[i]];
                i = root[i];
            }
            return i;
        }
        int findCircleNum(vector<vector<int>>& M) {
            int m = M.size();
            int res = m;
            vector<int> root(m);
            for(int i = 0; i < m; i++) root[i] = i;
            for(int i = 0; i < m; i++){
                for(int j = i + 1; j < m; j++){
                    if(M[i][j] == 1){
                        int a = getRoot(root, i);
                        int b = getRoot(root, j);
                        if(a != b){
                            root[a] = b;
                            res--;
                        }
                    }
                }
            }
            return res;
        }
    };
  • 相关阅读:
    Nginx服务器环境搭建
    PostgreSQL常见问题处理方法
    Linux之awk使用
    PostgreSQL常用SQL
    用apache commons-pool2建立thrift连接池
    redis开发小结
    如何解决netty发送消息截断问题
    后端服务开发总结
    利用git reflog找回错误的重置
    TCP长链接调试利器nc
  • 原文地址:https://www.cnblogs.com/Weixu-Liu/p/10882012.html
Copyright © 2011-2022 走看看