Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • DSA
  • Interview Problems on Graph
  • Practice Graph
  • MCQs on Graph
  • Graph Tutorial
  • Graph Representation
  • Graph Properties
  • Types of Graphs
  • Graph Applications
  • BFS on Graph
  • DFS on Graph
  • Graph VS Tree
  • Transpose Graph
  • Dijkstra's Algorithm
  • Minimum Spanning Tree
  • Prim’s Algorithm
  • Topological Sorting
  • Floyd Warshall Algorithm
  • Strongly Connected Components
  • Advantages & Disadvantages
Open In App
Next Article:
Bridges in a graph
Next article icon

Bridges in a graph

Last Updated : 11 May, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report
Try it on GfG Practice
redirect icon

Given an undirected Graph, The task is to find the Bridges in this Graph. 

An edge in an undirected connected graph is a bridge if removing it disconnects the graph. For a disconnected undirected graph, the definition is similar, a bridge is an edge removal that increases the number of disconnected components. 

Like Articulation Points, bridges represent vulnerabilities in a connected network and are useful for designing reliable networks.

Examples:

Input: 

Bridge1

Output: (0, 3) and (3, 4)

Input:

Bridge2

Output: (1, 6)

Input:

Bridge3

Output: (0, 1), (1, 2), and (2, 3)

Naive Approach: Below is the idea to solve the problem:

One by one remove all edges and see if the removal of an edge causes a disconnected graph. 

Follow the below steps to Implement the idea:

  • For every edge (u, v), do the following:
    • Remove (u, v) from the graph 
    • See if the graph remains connected (either uses BFS or DFS) 
    • Add (u, v) back to the graph.

Time Complexity: O(E*(V+E)) for a graph represented by an adjacency list.
Auxiliary Space: O(V+E)

Find Bridges in a graph using Tarjan's Algorithm.

Before heading towards the approach understand which edge is termed as bridge. Suppose there exists a edge from u -> v, now after removal of this edge if v can't be reached by any other edges then u -> v edge is bridge. Our approach is based on this intuition, so take time and grasp it.

ALGORITHM: -

To implement this algorithm, we need the following data structures -

  • visited[ ] = to keep track of the visited vertices to implement DFS
  • disc[ ] = to keep track when for the first time that particular vertex is reached
  • low[ ] = to keep track of the lowest possible time by which we can reach that vertex 'other than parent' so that if edge from parent is removed can the particular node can be reached other than parent.

We will traverse the graph using DFS traversal but with slight modifications i.e. while traversing we will keep track of the parent node by which the particular node is reached because we will update the low[node] = min(low[all it's adjacent node except parent]) hence we need to keep track of the parent.

While traversing adjacent nodes let 'v' of a particular node let 'u', then 3 cases arise -

1. v is parent of u then, 

  • skip that iteration.

2. v is visited then,

  • update the low of u i.e. low[u] = min( low[u] , disc[v]) this arises when a node can be visited by more than one node, but low is to keep track of the lowest possible time so we will update it.

3. v is not visited then,

  • call the DFS to traverse ahead
  • now update the low[u] = min( low[u], low[v] ) as we know v can't be parent cause we have handled that case first.
  • now check if ( low[v] > disc[u] ) i.e. the lowest possible to time to reach 'v' is greater than 'u' this means we can't reach 'v' without 'u' so the edge   u -> v is a bridge.

Below is the implementation of the above approach:

C++
// A C++ program to find bridges in a given undirected graph #include<bits/stdc++.h> using namespace std;  // A class that represents an undirected graph class Graph {     int V;    // No. of vertices     list<int> *adj;    // A dynamic array of adjacency lists     void bridgeUtil(int u, vector<bool>& visited, vector<int>& disc,                                    vector<int>& low, int parent); public:     Graph(int V);   // Constructor     void addEdge(int v, int w);   // to add an edge to graph     void bridge();    // prints all bridges };  Graph::Graph(int V) {     this->V = V;     adj = new list<int>[V]; }  void Graph::addEdge(int v, int w) {     adj[v].push_back(w);     adj[w].push_back(v);  // Note: the graph is undirected }  // A recursive function that finds and prints bridges using // DFS traversal // u --> The vertex to be visited next // visited[] --> keeps track of visited vertices // disc[] --> Stores discovery times of visited vertices // parent[] --> Stores parent vertices in DFS tree void Graph::bridgeUtil(int u, vector<bool>& visited, vector<int>& disc,                                    vector<int>& low, int parent) {     // A static variable is used for simplicity, we can      // avoid use of static variable by passing a pointer.     static int time = 0;      // Mark the current node as visited     visited[u] = true;      // Initialize discovery time and low value     disc[u] = low[u] = ++time;      // Go through all vertices adjacent to this     list<int>::iterator i;     for (i = adj[u].begin(); i != adj[u].end(); ++i)     {         int v = *i;  // v is current adjacent of u                      // 1. If v is parent            if(v==parent)             continue;                  //2. If v is visited           if(visited[v]){           low[u]  = min(low[u], disc[v]);         }                  //3. If v is not visited           else{           parent = u;           bridgeUtil(v, visited, disc, low, parent);              // update the low of u as it's quite possible            // a connection exists from v's descendants to u           low[u]  = min(low[u], low[v]);                      // if the lowest possible time to reach vertex v           // is greater than discovery time of u it means            // that v can be only be reached by vertex above v           // so if that edge is removed v can't be reached so it's a bridge           if (low[v] > disc[u])               cout << u <<" " << v << endl;                    }     } }  // DFS based function to find all bridges. It uses recursive  // function bridgeUtil() void Graph::bridge() {     // Mark all the vertices as not visited disc and low as -1     vector<bool> visited (V,false);     vector<int> disc (V,-1);       vector<int> low (V,-1);            // Initially there is no parent so let it be -1       int parent = -1;      // Call the recursive helper function to find Bridges     // in DFS tree rooted with vertex 'i'     for (int i = 0; i < V; i++)         if (visited[i] == false)             bridgeUtil(i, visited, disc, low, parent); }  // Driver program to test above function int main() {     // Create graphs given in above diagrams     cout << "\nBridges in first graph \n";     Graph g1(5);     g1.addEdge(1, 0);     g1.addEdge(0, 2);     g1.addEdge(2, 1);     g1.addEdge(0, 3);     g1.addEdge(3, 4);     g1.bridge();      cout << "\nBridges in second graph \n";     Graph g2(4);     g2.addEdge(0, 1);     g2.addEdge(1, 2);     g2.addEdge(2, 3);     g2.bridge();      cout << "\nBridges in third graph \n";     Graph g3(7);     g3.addEdge(0, 1);     g3.addEdge(1, 2);     g3.addEdge(2, 0);     g3.addEdge(1, 3);     g3.addEdge(1, 4);     g3.addEdge(1, 6);     g3.addEdge(3, 5);     g3.addEdge(4, 5);     g3.bridge();      return 0; } 
Java
// A Java program to find bridges in a given undirected graph import java.io.*; import java.util.*; import java.util.LinkedList;  // This class represents a undirected graph using adjacency list // representation class Graph {     private int V;   // No. of vertices      // Array  of lists for Adjacency List Representation     private LinkedList<Integer> adj[];     int time = 0;     static final int NIL = -1;      // Constructor     @SuppressWarnings("unchecked")Graph(int v)     {         V = v;         adj = new LinkedList[v];         for (int i=0; i<v; ++i)             adj[i] = new LinkedList();     }      // Function to add an edge into the graph     void addEdge(int v, int w)     {         adj[v].add(w);  // Add w to v's list.         adj[w].add(v);    //Add v to w's list     }      // A recursive function that finds and prints bridges     // using DFS traversal     // u --> The vertex to be visited next     // visited[] --> keeps track of visited vertices     // disc[] --> Stores discovery times of visited vertices     // parent[] --> Stores parent vertices in DFS tree     void bridgeUtil(int u, boolean visited[], int disc[],                     int low[], int parent[])     {          // Mark the current node as visited         visited[u] = true;          // Initialize discovery time and low value         disc[u] = low[u] = ++time;          // Go through all vertices adjacent to this         Iterator<Integer> i = adj[u].iterator();         while (i.hasNext())         {             int v = i.next();  // v is current adjacent of u              // If v is not visited yet, then make it a child             // of u in DFS tree and recur for it.             // If v is not visited yet, then recur for it             if (!visited[v])             {                 parent[v] = u;                 bridgeUtil(v, visited, disc, low, parent);                  // Check if the subtree rooted with v has a                 // connection to one of the ancestors of u                 low[u]  = Math.min(low[u], low[v]);                  // If the lowest vertex reachable from subtree                 // under v is below u in DFS tree, then u-v is                 // a bridge                 if (low[v] > disc[u])                     System.out.println(u+" "+v);             }              // Update low value of u for parent function calls.             else if (v != parent[u])                 low[u]  = Math.min(low[u], disc[v]);         }     }       // DFS based function to find all bridges. It uses recursive     // function bridgeUtil()     void bridge()     {         // Mark all the vertices as not visited         boolean visited[] = new boolean[V];         int disc[] = new int[V];         int low[] = new int[V];         int parent[] = new int[V];           // Initialize parent and visited, and ap(articulation point)         // arrays         for (int i = 0; i < V; i++)         {             parent[i] = NIL;             visited[i] = false;         }          // Call the recursive helper function to find Bridges         // in DFS tree rooted with vertex 'i'         for (int i = 0; i < V; i++)             if (visited[i] == false)                 bridgeUtil(i, visited, disc, low, parent);     }      public static void main(String args[])     {         // Create graphs given in above diagrams         System.out.println("Bridges in first graph ");         Graph g1 = new Graph(5);         g1.addEdge(1, 0);         g1.addEdge(0, 2);         g1.addEdge(2, 1);         g1.addEdge(0, 3);         g1.addEdge(3, 4);         g1.bridge();         System.out.println();          System.out.println("Bridges in Second graph");         Graph g2 = new Graph(4);         g2.addEdge(0, 1);         g2.addEdge(1, 2);         g2.addEdge(2, 3);         g2.bridge();         System.out.println();          System.out.println("Bridges in Third graph ");         Graph g3 = new Graph(7);         g3.addEdge(0, 1);         g3.addEdge(1, 2);         g3.addEdge(2, 0);         g3.addEdge(1, 3);         g3.addEdge(1, 4);         g3.addEdge(1, 6);         g3.addEdge(3, 5);         g3.addEdge(4, 5);         g3.bridge();     } } // This code is contributed by Aakash Hasija 
Python
# Python program to find bridges in a given undirected graph #Complexity : O(V+E)   from collections import defaultdict   #This class represents an undirected graph using adjacency list representation class Graph:       def __init__(self,vertices):         self.V= vertices #No. of vertices         self.graph = defaultdict(list) # default dictionary to store graph         self.Time = 0       # function to add an edge to graph     def addEdge(self,u,v):         self.graph[u].append(v)         self.graph[v].append(u)       '''A recursive function that finds and prints bridges     using DFS traversal     u --> The vertex to be visited next     visited[] --> keeps track of visited vertices     disc[] --> Stores discovery times of visited vertices     parent[] --> Stores parent vertices in DFS tree'''     def bridgeUtil(self,u, visited, parent, low, disc):          # Mark the current node as visited and print it         visited[u]= True          # Initialize discovery time and low value         disc[u] = self.Time         low[u] = self.Time         self.Time += 1          #Recur for all the vertices adjacent to this vertex         for v in self.graph[u]:             # If v is not visited yet, then make it a child of u             # in DFS tree and recur for it             if visited[v] == False :                 parent[v] = u                 self.bridgeUtil(v, visited, parent, low, disc)                  # Check if the subtree rooted with v has a connection to                 # one of the ancestors of u                 low[u] = min(low[u], low[v])                   ''' If the lowest vertex reachable from subtree                 under v is below u in DFS tree, then u-v is                 a bridge'''                 if low[v] > disc[u]:                     print ("%d %d" %(u,v))                                       elif v != parent[u]: # Update low value of u for parent function calls.                 low[u] = min(low[u], disc[v])       # DFS based function to find all bridges. It uses recursive     # function bridgeUtil()     def bridge(self):           # Mark all the vertices as not visited and Initialize parent and visited,          # and ap(articulation point) arrays         visited = [False] * (self.V)         disc = [float("Inf")] * (self.V)         low = [float("Inf")] * (self.V)         parent = [-1] * (self.V)          # Call the recursive helper function to find bridges         # in DFS tree rooted with vertex 'i'         for i in range(self.V):             if visited[i] == False:                 self.bridgeUtil(i, visited, parent, low, disc)            # Create a graph given in the above diagram g1 = Graph(5) g1.addEdge(1, 0) g1.addEdge(0, 2) g1.addEdge(2, 1) g1.addEdge(0, 3) g1.addEdge(3, 4)    print ("Bridges in first graph ") g1.bridge()  g2 = Graph(4) g2.addEdge(0, 1) g2.addEdge(1, 2) g2.addEdge(2, 3) print ("\nBridges in second graph ") g2.bridge()    g3 = Graph (7) g3.addEdge(0, 1) g3.addEdge(1, 2) g3.addEdge(2, 0) g3.addEdge(1, 3) g3.addEdge(1, 4) g3.addEdge(1, 6) g3.addEdge(3, 5) g3.addEdge(4, 5) print ("\nBridges in third graph ") g3.bridge()   #This code is contributed by Neelam Yadav 
C#
// A C# program to find bridges  // in a given undirected graph  using System; using System.Collections.Generic;  // This class represents a undirected graph   // using adjacency list representation  public class Graph  {      private int V; // No. of vertices       // Array of lists for Adjacency List Representation      private List<int> []adj;      int time = 0;      static readonly int NIL = -1;       // Constructor      Graph(int v)      {          V = v;          adj = new List<int>[v];          for (int i = 0; i < v; ++i)              adj[i] = new List<int>();      }       // Function to add an edge into the graph      void addEdge(int v, int w)      {          adj[v].Add(w); // Add w to v's list.          adj[w].Add(v); //Add v to w's list      }       // A recursive function that finds and prints bridges      // using DFS traversal      // u --> The vertex to be visited next      // visited[] --> keeps track of visited vertices      // disc[] --> Stores discovery times of visited vertices      // parent[] --> Stores parent vertices in DFS tree      void bridgeUtil(int u, bool []visited, int []disc,                      int []low, int []parent)      {           // Mark the current node as visited          visited[u] = true;           // Initialize discovery time and low value          disc[u] = low[u] = ++time;           // Go through all vertices adjacent to this          foreach(int i in adj[u])          {              int v = i; // v is current adjacent of u               // If v is not visited yet, then make it a child              // of u in DFS tree and recur for it.              // If v is not visited yet, then recur for it              if (!visited[v])              {                  parent[v] = u;                  bridgeUtil(v, visited, disc, low, parent);                   // Check if the subtree rooted with v has a                  // connection to one of the ancestors of u                  low[u] = Math.Min(low[u], low[v]);                   // If the lowest vertex reachable from subtree                  // under v is below u in DFS tree, then u-v is                  // a bridge                  if (low[v] > disc[u])                      Console.WriteLine(u + " " + v);              }               // Update low value of u for parent function calls.              else if (v != parent[u])                  low[u] = Math.Min(low[u], disc[v]);          }      }        // DFS based function to find all bridges. It uses recursive      // function bridgeUtil()      void bridge()      {          // Mark all the vertices as not visited          bool []visited = new bool[V];          int []disc = new int[V];          int []low = new int[V];          int []parent = new int[V];            // Initialize parent and visited,           // and ap(articulation point) arrays          for (int i = 0; i < V; i++)          {              parent[i] = NIL;              visited[i] = false;          }           // Call the recursive helper function to find Bridges          // in DFS tree rooted with vertex 'i'          for (int i = 0; i < V; i++)              if (visited[i] == false)                  bridgeUtil(i, visited, disc, low, parent);      }       // Driver code     public static void Main(String []args)      {          // Create graphs given in above diagrams          Console.WriteLine("Bridges in first graph ");          Graph g1 = new Graph(5);          g1.addEdge(1, 0);          g1.addEdge(0, 2);          g1.addEdge(2, 1);          g1.addEdge(0, 3);          g1.addEdge(3, 4);          g1.bridge();          Console.WriteLine();           Console.WriteLine("Bridges in Second graph");          Graph g2 = new Graph(4);          g2.addEdge(0, 1);          g2.addEdge(1, 2);          g2.addEdge(2, 3);          g2.bridge();          Console.WriteLine();           Console.WriteLine("Bridges in Third graph ");          Graph g3 = new Graph(7);          g3.addEdge(0, 1);          g3.addEdge(1, 2);          g3.addEdge(2, 0);          g3.addEdge(1, 3);          g3.addEdge(1, 4);          g3.addEdge(1, 6);          g3.addEdge(3, 5);          g3.addEdge(4, 5);          g3.bridge();      }  }   // This code is contributed by Rajput-Ji 
JavaScript
<script> // A Javascript program to find bridges in a given undirected graph  // This class represents a directed graph using adjacency // list representation class Graph {     // Constructor     constructor(v)     {         this.V = v;         this.adj = new Array(v);                  this.NIL = -1;         this.time = 0;         for (let i=0; i<v; ++i)             this.adj[i] = [];     }          //Function to add an edge into the graph     addEdge(v,w)     {         this.adj[v].push(w);  //Note that the graph is undirected.         this.adj[w].push(v);     }          // A recursive function that finds and prints bridges     // using DFS traversal     // u --> The vertex to be visited next     // visited[] --> keeps track of visited vertices     // disc[] --> Stores discovery times of visited vertices     // parent[] --> Stores parent vertices in DFS tree     bridgeUtil(u,visited,disc,low,parent)     {         // Mark the current node as visited         visited[u] = true;            // Initialize discovery time and low value         disc[u] = low[u] = ++this.time;            // Go through all vertices adjacent to this                  for(let i of this.adj[u])         {             let v = i;  // v is current adjacent of u                // If v is not visited yet, then make it a child             // of u in DFS tree and recur for it.             // If v is not visited yet, then recur for it             if (!visited[v])             {                 parent[v] = u;                 this.bridgeUtil(v, visited, disc, low, parent);                    // Check if the subtree rooted with v has a                 // connection to one of the ancestors of u                 low[u]  = Math.min(low[u], low[v]);                    // If the lowest vertex reachable from subtree                 // under v is below u in DFS tree, then u-v is                 // a bridge                 if (low[v] > disc[u])                     document.write(u+" "+v+"<br>");             }                // Update low value of u for parent function calls.             else if (v != parent[u])                 low[u]  = Math.min(low[u], disc[v]);         }     }          // DFS based function to find all bridges. It uses recursive     // function bridgeUtil()     bridge()     {         // Mark all the vertices as not visited         let visited = new Array(this.V);         let disc = new Array(this.V);         let low = new Array(this.V);         let parent = new Array(this.V);               // Initialize parent and visited, and ap(articulation point)         // arrays         for (let i = 0; i < this.V; i++)         {             parent[i] = this.NIL;             visited[i] = false;         }            // Call the recursive helper function to find Bridges         // in DFS tree rooted with vertex 'i'         for (let i = 0; i < this.V; i++)             if (visited[i] == false)                 this.bridgeUtil(i, visited, disc, low, parent);     } }  // Create graphs given in above diagrams document.write("Bridges in first graph <br>"); let g1 = new Graph(5); g1.addEdge(1, 0); g1.addEdge(0, 2); g1.addEdge(2, 1); g1.addEdge(0, 3); g1.addEdge(3, 4); g1.bridge(); document.write("<br>");  document.write("Bridges in Second graph<br>"); let g2 = new Graph(4); g2.addEdge(0, 1); g2.addEdge(1, 2); g2.addEdge(2, 3); g2.bridge(); document.write("<br>");  document.write("Bridges in Third graph <br>"); let g3 = new Graph(7); g3.addEdge(0, 1); g3.addEdge(1, 2); g3.addEdge(2, 0); g3.addEdge(1, 3); g3.addEdge(1, 4); g3.addEdge(1, 6); g3.addEdge(3, 5); g3.addEdge(4, 5); g3.bridge();  // This code is contributed by avanitrachhadiya2155 </script> 

Output
Bridges in first graph  3 4 0 3  Bridges in second graph  2 3 1 2 0 1  Bridges in third graph  1 6

Time Complexity: O(V+E), 

  • The above approach uses simple DFS along with Tarjan's Algorithm. 
  • So time complexity is the same as DFS which is O(V+E) for adjacency list representation of the graph.

Auxiliary Space: O(V) is used for visited, disc and low arrays.


Next Article
Bridges in a graph

K

kartik
Improve
Article Tags :
  • Graph
  • DSA
  • graph-connectivity
Practice Tags :
  • Graph

Similar Reads

    Graph Algorithms
    Graph is a non-linear data structure like tree data structure. The limitation of tree is, it can only represent hierarchical data. For situations where nodes or vertices are randomly connected with each other other, we use Graph. Example situations where we use graph data structure are, a social net
    3 min read
    Introduction to Graph Data Structure
    Graph Data Structure is a non-linear data structure consisting of vertices and edges. It is useful in fields such as social network analysis, recommendation systems, and computer networks. In the field of sports data science, graph data structure can be used to analyze and understand the dynamics of
    15+ min read
    Graph and its representations
    A Graph is a non-linear data structure consisting of vertices and edges. The vertices are sometimes also referred to as nodes and the edges are lines or arcs that connect any two nodes in the graph. More formally a Graph is composed of a set of vertices( V ) and a set of edges( E ). The graph is den
    12 min read
    Types of Graphs with Examples
    A graph is a mathematical structure that represents relationships between objects by connecting a set of points. It is used to establish a pairwise relationship between elements in a given set. graphs are widely used in discrete mathematics, computer science, and network theory to represent relation
    9 min read
    Basic Properties of a Graph
    A Graph is a non-linear data structure consisting of nodes and edges. The nodes are sometimes also referred to as vertices and the edges are lines or arcs that connect any two nodes in the graph. The basic properties of a graph include: Vertices (nodes): The points where edges meet in a graph are kn
    4 min read
    Applications, Advantages and Disadvantages of Graph
    Graph is a non-linear data structure that contains nodes (vertices) and edges. A graph is a collection of set of vertices and edges (formed by connecting two vertices). A graph is defined as G = {V, E} where V is the set of vertices and E is the set of edges. Graphs can be used to model a wide varie
    7 min read
    Transpose graph
    Transpose of a directed graph G is another directed graph on the same set of vertices with all of the edges reversed compared to the orientation of the corresponding edges in G. That is, if G contains an edge (u, v) then the converse/transpose/reverse of G contains an edge (v, u) and vice versa. Giv
    9 min read
    Difference Between Graph and Tree
    Graphs and trees are two fundamental data structures used in computer science to represent relationships between objects. While they share some similarities, they also have distinct differences that make them suitable for different applications. Difference Between Graph and Tree What is Graph?A grap
    2 min read

    BFS and DFS on Graph

    Breadth First Search or BFS for a Graph
    Given a undirected graph represented by an adjacency list adj, where each adj[i] represents the list of vertices connected to vertex i. Perform a Breadth First Search (BFS) traversal starting from vertex 0, visiting vertices from left to right according to the adjacency list, and return a list conta
    15+ min read
    Depth First Search or DFS for a Graph
    In Depth First Search (or DFS) for a graph, we traverse all adjacent vertices one by one. When we traverse an adjacent vertex, we completely finish the traversal of all vertices reachable through that adjacent vertex. This is similar to a tree, where we first completely traverse the left subtree and
    13 min read
    Applications, Advantages and Disadvantages of Depth First Search (DFS)
    Depth First Search is a widely used algorithm for traversing a graph. Here we have discussed some applications, advantages, and disadvantages of the algorithm. Applications of Depth First Search:1. Detecting cycle in a graph: A graph has a cycle if and only if we see a back edge during DFS. So we ca
    4 min read
    Applications, Advantages and Disadvantages of Breadth First Search (BFS)
    We have earlier discussed Breadth First Traversal Algorithm for Graphs. Here in this article, we will see the applications, advantages, and disadvantages of the Breadth First Search. Applications of Breadth First Search: 1. Shortest Path and Minimum Spanning Tree for unweighted graph: In an unweight
    4 min read
    Iterative Depth First Traversal of Graph
    Given a directed Graph, the task is to perform Depth First Search of the given graph.Note: Start DFS from node 0, and traverse the nodes in the same order as adjacency list.Note : There can be multiple DFS traversals of a graph according to the order in which we pick adjacent vertices. Here we pick
    10 min read
    BFS for Disconnected Graph
    In the previous post, BFS only with a particular vertex is performed i.e. it is assumed that all vertices are reachable from the starting vertex. But in the case of a disconnected graph or any vertex that is unreachable from all vertex, the previous implementation will not give the desired output, s
    14 min read
    Transitive Closure of a Graph using DFS
    Given a directed graph, find out if a vertex v is reachable from another vertex u for all vertex pairs (u, v) in the given graph. Here reachable means that there is a path from vertex u to v. The reach-ability matrix is called transitive closure of a graph. For example, consider below graph: GraphTr
    8 min read
    Difference between BFS and DFS
    Breadth-First Search (BFS) and Depth-First Search (DFS) are two fundamental algorithms used for traversing or searching graphs and trees. This article covers the basic difference between Breadth-First Search and Depth-First Search.Difference between BFS and DFSParametersBFSDFSStands forBFS stands fo
    2 min read

    Cycle in a Graph

    Detect Cycle in a Directed Graph
    Given the number of vertices V and a list of directed edges, determine whether the graph contains a cycle or not.Examples: Input: V = 4, edges[][] = [[0, 1], [0, 2], [1, 2], [2, 0], [2, 3]]Cycle: 0 → 2 → 0 Output: trueExplanation: The diagram clearly shows a cycle 0 → 2 → 0 Input: V = 4, edges[][] =
    15+ min read
    Detect cycle in an undirected graph
    Given an undirected graph, the task is to check if there is a cycle in the given graph.Examples:Input: V = 4, edges[][]= [[0, 1], [0, 2], [1, 2], [2, 3]]Undirected Graph with 4 vertices and 4 edgesOutput: trueExplanation: The diagram clearly shows a cycle 0 → 2 → 1 → 0Input: V = 4, edges[][] = [[0,
    8 min read
    Detect Cycle in a directed graph using colors
    Given a directed graph represented by the number of vertices V and a list of directed edges, determine whether the graph contains a cycle.Your task is to implement a function that accepts V (number of vertices) and edges (an array of directed edges where each edge is a pair [u, v]), and returns true
    9 min read
    Detect a negative cycle in a Graph | (Bellman Ford)
    Given a directed weighted graph, your task is to find whether the given graph contains any negative cycles that are reachable from the source vertex (e.g., node 0).Note: A negative-weight cycle is a cycle in a graph whose edges sum to a negative value.Example:Input: V = 4, edges[][] = [[0, 3, 6], [1
    15+ min read
    Cycles of length n in an undirected and connected graph
    Given an undirected and connected graph and a number n, count the total number of simple cycles of length n in the graph. A simple cycle of length n is defined as a cycle that contains exactly n vertices and n edges. Note that for an undirected graph, each cycle should only be counted once, regardle
    10 min read
    Detecting negative cycle using Floyd Warshall
    We are given a directed graph. We need compute whether the graph has negative cycle or not. A negative cycle is one in which the overall sum of the cycle comes negative. Negative weights are found in various applications of graphs. For example, instead of paying cost for a path, we may get some adva
    12 min read
    Clone a Directed Acyclic Graph
    A directed acyclic graph (DAG) is a graph which doesn't contain a cycle and has directed edges. We are given a DAG, we need to clone it, i.e., create another graph that has copy of its vertices and edges connecting them. Examples: Input : 0 - - - > 1 - - - -> 4 | / \ ^ | / \ | | / \ | | / \ |
    12 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences