Detect cycle in an undirected graph

来源:互联网 发布:实时油价查询软件 编辑:程序博客网 时间:2024/06/06 19:27

Given an undirected graph, how to check if there is a cycle in the graph? For example, the following graph has a cycle 1-0-2-1.
cycleGraph
We have discussed cycle detection for directed graph. We have also discussed a union-find algorithm for cycle detection in undirected graphs. The time complexity of the union-find algorithm is O(ELogV). Like directed graphs, we can use DFS to detect cycle in an undirected graph in O(V+E) time. We do a DFS traversal of the given graph. For every visited vertex ‘v’, if there is an adjacent ‘u’ such that u is already visited and u is not parent of v, then there is a cycle in graph. If we don’t find such an adjacent for any vertex, we say that there is no cycle. The assumption of this approach is that there are no parallel edges between any two vertices.

// A C++ Program to detect cycle in an undirected graph#include<iostream>#include <list>#include <limits.h>using namespace std; // Class for an undirected graphclass Graph{    int V;    // No. of vertices    list<int> *adj;    // Pointer to an array containing adjacency lists    bool isCyclicUtil(int v, bool visited[], int parent);public:    Graph(int V);   // Constructor    void addEdge(int v, int w);   // to add an edge to graph    bool isCyclic();   // returns true if there is a cycle}; Graph::Graph(int V){    this->V = V;    adj = new list<int>[V];} void Graph::addEdge(int v, int w){    adj[v].push_back(w); // Add w to v’s list.    adj[w].push_back(v); // Add v to w’s list.} // A recursive function that uses visited[] and parent to detect// cycle in subgraph reachable from vertex v.bool Graph::isCyclicUtil(int v, bool visited[], int parent){    // Mark the current node as visited    visited[v] = true;     // Recur for all the vertices adjacent to this vertex    list<int>::iterator i;    for (i = adj[v].begin(); i != adj[v].end(); ++i)    {        // If an adjacent is not visited, then recur for that adjacent        if (!visited[*i])        {           if (isCyclicUtil(*i, visited, v))              return true;        }         // If an adjacent is visited and not parent of current vertex,        // then there is a cycle.        else if (*i != parent)           return true;    }    return false;} // Returns true if the graph contains a cycle, else false.bool Graph::isCyclic(){    // Mark all the vertices as not visited and not part of recursion    // stack    bool *visited = new bool[V];    for (int i = 0; i < V; i++)        visited[i] = false;     // Call the recursive helper function to detect cycle in different    // DFS trees    for (int u = 0; u < V; u++)        if (!visited[u]) // Don't recur for u if it is already visited          if (isCyclicUtil(u, visited, -1))             return true;     return false;} // Driver program to test above functionsint main(){    Graph g1(5);    g1.addEdge(1, 0);    g1.addEdge(0, 2);    g1.addEdge(2, 0);    g1.addEdge(0, 3);    g1.addEdge(3, 4);    g1.isCyclic()? cout << "Graph contains cycle\n":                   cout << "Graph doesn't contain cycle\n";     Graph g2(3);    g2.addEdge(0, 1);    g2.addEdge(1, 2);    g2.isCyclic()? cout << "Graph contains cycle\n":                   cout << "Graph doesn't contain cycle\n";     return 0;}

Output:

Graph contains cycleGraph doesn't contain cycle

Time Complexity: The program does a simple DFS Traversal of graph and graph is represented using adjacency list. So the time complexity is O(V+E)

Exercise: Can we use BFS to detect cycle in an undirected graph in O(V+E) time? What about directed graphs?


code for java:

import java.util.*; //remove bst keys outside the given rangepublic class Main {public static void dfs(List<List<Integer>> a, int start, int n){int i;boolean visited[]=new boolean[n];int parent[]=new int[n];for(i=0;i<n;i++) parent[i]=-1;for(i=0;i<n;i++) visited[i]=false;//initially none is visitedStack<Integer> x=new Stack<Integer>();x.add(start);//initially we push the start vertex to the stackwhile(!x.isEmpty()){int h = x.pop();System.out.print(h+" ");visited[h]=true;int count=0;for(i=0;i<a.get(h).size();i++){if(visited[a.get(h).get(i)]&&parent[h]!=a.get(h).get(i)&&parent[h]!=-1) {parent[a.get(h).get(i)]=h;System.out.println("Cycle found");System.out.println("Now we present to you the cycle.");int xx=a.get(h).get(i);do{System.out.print(xx+" ");xx=parent[xx];count++;}while(xx!=a.get(h).get(i));System.out.println();System.out.println("which is of length "+count);return;}if(!visited[a.get(h).get(i)]) {x.push(a.get(h).get(i));parent[a.get(h).get(i)]=h;}} }System.out.println();}public static void main(String args[]){int i;Scanner in = new Scanner(System.in);System.out.println("Please enter the number of nodes in the graph");int n=in.nextInt();System.out.println(n);List<List<Integer>> a=new ArrayList<List<Integer>>();for(i=0;i<n;i++) a.add(new ArrayList<Integer>());System.out.println("Please enter the number of edges in the graph");int e=in.nextInt();System.out.println("Now please enter the edges of the undirected graph one by one");for(i=0;i<e;i++){int p=in.nextInt();int q=in.nextInt();a.get(q).add(p);a.get(p).add(q);}dfs(a,0,n);}}


转自:http://www.geeksforgeeks.org/detect-cycle-undirected-graph/


0 0
原创粉丝点击