ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Is Graph Bipartite?

2021-08-02 02:00:48  阅读:202  来源: 互联网

标签:node int Graph nodeColor color neighbor graph Bipartite


Code link: https://leetcode.com/problems/is-graph-bipartite/

Constraint:

    graph.length == n
    1 <= n <= 100
    0 <= graph[u].length < n
    0 <= graph[u][i] <= n - 1
    graph[u] does not contain u.
    All the values of graph[u] are unique.
    If graph[u] contains v, then graph[v] contains u.

Idea

The idea is to use 2 different colors to mark each node. If there's an edge between u and v, then the color of u and v must be different. Otherwise there's a color conflict and it couldn't be a Bipartite graph. We could use BFS/DFS to traverse the graph. Initially set the node being visited as blue. Then when visiting its neighbors, set them as different color (red). If any of the neighbor already has a color set that is conflicting with current node, the graph is not a Bipartie.

Code

  • BFS solution:
// A node could have 3 stages: 0 (unvisited), 1(red), -1 (blue). All nodes do not have any color at the begining. 
class Solution {
    public boolean isBipartite(int[][] graph) {
        int[] color = new int[graph.length];
        for (int u = 0; u < graph.length; u++) {
            if (color[u] != 0) {
                continue;
            }
            
            color[u] = 1;
            Queue<Integer> queue = new LinkedList<>();
            queue.offer(u);
            while (!queue.isEmpty()) {
                int cur = queue.poll();
                for (int neighbor : graph[cur]) {
                    if (color[cur] == color[neighbor]) {
                        return false;
                    } else if (color[neighbor] == 0) {
                        color[neighbor] = -color[cur];
                        queue.offer(neighbor);
                    }
                }
            }
        }
        
        return true;
    }
}
  • Time: O(V + E), where V is the number of nodes in the graph and E is the number of edges in the graph.

  • Space: O(V). The size of array to keep track of colors is V. The queue is to store the adjacent nodes for a given node, which could be V - 1.

  • DFS solution:

class Solution {
   public boolean isBipartite(int[][] graph) {
       int[] nodeColor = new int[graph.length];
       for (int i = 0; i < graph.length; i++) {
           if (nodeColor[i] == 0 && !isValid(graph, nodeColor, i, 1)) {
               return false;
           }
       }
       
       return true;
   }
   
   private boolean isValid(int[][] graph, int[] nodeColor, int node, int colorToMark) {
       if (nodeColor[node] != 0) {
           return nodeColor[node] == colorToMark;
       }
       
       nodeColor[node] = colorToMark;
       for (int neighbor : graph[node]) {
           if (!isValid(graph, nodeColor, neighbor, -colorToMark)) {
               return false;
           }
       }
       
       return true;
   }
}
  • Time and space complexity should be the same as BFS.

  • Union find solution:

标签:node,int,Graph,nodeColor,color,neighbor,graph,Bipartite
来源: https://www.cnblogs.com/blackraven25/p/15088217.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有