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:
Transitive Closure of a Graph using DFS
Next article icon

Tree, Back, Edge and Cross Edges in DFS of Graph

Last Updated : 15 Feb, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Given a directed graph, the task is to identify tree, forward, back and cross edges present in the graph.

Note: There can be multiple answers.

Example:

Input: Graph

Output:
Tree Edges: 1->2, 2->4, 4->6, 1->3, 3->5, 5->7, 5->8
Forward Edges: 1->8
Back Edges: 6->2
Cross Edges: 5->4

  • Tree Edge: It is an edge which is present in the tree obtained after applying DFS on the graph. All the Green edges are tree edges. 
  • Forward Edge: It is an edge (u, v) such that v is a descendant but not part of the DFS tree. An edge from 1 to 8 is a forward edge. 
  • Back edge: It is an edge (u, v) such that v is the ancestor of node u but is not part of the DFS tree. Edge from 6 to 2 is a back edge. Presence of back edge indicates a cycle in directed graph. 
  • Cross Edge: It is an edge that connects two nodes such that they do not have any ancestor and a descendant relationship between them. The edge from node 5 to 4 is a cross edge.

Approach:

The idea is to perform a Depth-First Search (DFS) traversal of the directed graph while tracking discovery and finish times to classify edges into Tree, Forward, Back, and Cross edges based on their relationship with visited nodes and the DFS call stack.

Step by step approach:

  1. Initialize discovery and finish time arrays, a visited array, and an inStack array to track nodes in the current DFS recursion stack.
  2. Start DFS from each unvisited node, updating discovery times and marking nodes as visited and in the stack.
  3. If an adjacent node v is unvisited, classify the edge (u, v) as a Tree Edge and recursively call DFS on v.
  4. If v is already visited and present in the recursion stack, classify (u, v) as a Back Edge, indicating a cycle.
  5. If v is already visited but not in the recursion stack and discovery[u] < discovery[v], classify (u, v) as a Forward Edge, meaning v is a descendant of u.
  6. If v is already visited, not in the stack, and discovery[u] > discovery[v], classify (u, v) as a Cross Edge, indicating a connection between different DFS trees.
  7. After processing all neighbors of u, remove u from the stack and update its finish time.

Below is the implementation of the above approach:

C++
// c++ program to identify Tree, Back,  // Edge and Cross Edges in DFS of Graph #include <bits/stdc++.h> using namespace std;  void dfs(int u, vector<vector<int>>& adj, vector<bool>& visited,      vector<bool>& inStack, vector<int>& discovery,      vector<int>& finish, int& timeStamp,     vector<vector<vector<int>>>& edges) {          visited[u] = true;     inStack[u] = true;     discovery[u] = ++timeStamp;          for(int v : adj[u]) {         if(!visited[v]) {                          // Tree Edge             edges[0].push_back({u, v});             dfs(v, adj, visited, inStack,              discovery, finish, timeStamp, edges);         }         else {             if(inStack[v]) {                                  // Back Edge                 edges[2].push_back({u, v});             }             else if(discovery[u] < discovery[v]) {                                  // Forward Edge                 edges[1].push_back({u, v});             }             else {                                  // Cross Edge                 edges[3].push_back({u, v});             }         }     }          inStack[u] = false;     finish[u] = ++timeStamp; }  vector<vector<vector<int>>> classifyEdges(vector<vector<int>>& adj) {     int n = adj.size();          // Array to store discovery timeStamp of node     vector<int> discovery(n, 0);          // Array to store finish timeStamp of node.     vector<int> finish(n, 0);          // Array to check if node is visited     vector<bool> visited(n, false);          // Array to check if node is in call stack.     vector<bool> inStack(n, false);     int timeStamp = 0;          // Initialize result vector with      // 4 empty vectors for each edge type     vector<vector<vector<int>>> edges(4);          // Run DFS for each unvisited vertex     for(int i = 0; i < n; i++) {         if(!visited[i]) {             dfs(i, adj, visited, inStack,              discovery, finish, timeStamp, edges);         }     }          return edges; }  int main() {          vector<vector<int>> adj = {         {1, 2, 7},              {3},              {4},                {5},          {3, 6, 7},         {1},         {},         {}     };          vector<vector<vector<int>>> edges = classifyEdges(adj);          vector<string> edgeNames = {"Tree Edges", "Forward Edges",      "Back Edges", "Cross Edges"};          for(int i = 0; i < 4; i++) {         cout << edgeNames[i] << ": ";         for(auto& edge : edges[i]) {             cout << edge[0] << "->" << edge[1] << " ";         }         cout << endl;     }          return 0; } 
Java
// Java program to identify Tree, Back,  // Edge and Cross Edges in DFS of Graph  import java.util.*;  class GfG {      static void dfs(int u, int[][] adj, boolean[] visited,          boolean[] inStack, int[] discovery, int[] finish,          int[] timeStamp, List<int[]>[] edges) {                  visited[u] = true;         inStack[u] = true;         discovery[u] = ++timeStamp[0];                  for (int v : adj[u]) {             if (!visited[v]) {                                  // Tree Edge                 edges[0].add(new int[]{u, v});                 dfs(v, adj, visited, inStack,                  discovery, finish, timeStamp, edges);             } else {                 if (inStack[v]) {                                          // Back Edge                     edges[2].add(new int[]{u, v});                 } else if (discovery[u] < discovery[v]) {                                          // Forward Edge                     edges[1].add(new int[]{u, v});                 } else {                                          // Cross Edge                     edges[3].add(new int[]{u, v});                 }             }         }                  inStack[u] = false;         finish[u] = ++timeStamp[0];     }      static List<int[]>[] classifyEdges(int[][] adj) {         int n = adj.length;                  int[] discovery = new int[n];         int[] finish = new int[n];         boolean[] visited = new boolean[n];         boolean[] inStack = new boolean[n];         int[] timeStamp = {0};                  List<int[]>[] edges = new List[4];         for (int i = 0; i < 4; i++) {             edges[i] = new ArrayList<>();         }                  for (int i = 0; i < n; i++) {             if (!visited[i]) {                 dfs(i, adj, visited, inStack, discovery, finish, timeStamp, edges);             }         }                  return edges;     }      public static void main(String[] args) {         int[][] adj = {             {1, 2, 7},                  {3},                  {4},                    {5},              {3, 6, 7},             {1},             {},             {}         };                  List<int[]>[] edges = classifyEdges(adj);                  String[] edgeNames = {"Tree Edges", "Forward Edges",          "Back Edges", "Cross Edges"};                  for (int i = 0; i < 4; i++) {             System.out.print(edgeNames[i] + ": ");             for (int[] edge : edges[i]) {                 System.out.print(edge[0] + "->" + edge[1] + " ");             }             System.out.println();         }     } } 
Python
# Python program to identify Tree, Back,  # Edge and Cross Edges in DFS of Graph  # Function to perform DFS def dfs(u, adj, visited, inStack, discovery, finish, timeStamp, edges):     visited[u] = True     inStack[u] = True     discovery[u] = timeStamp[0] = timeStamp[0] + 1          for v in adj[u]:         if not visited[v]:                          # Tree Edge             edges[0].append([u, v])             dfs(v, adj, visited, inStack, discovery, finish, timeStamp, edges)         else:             if inStack[v]:                                  # Back Edge                 edges[2].append([u, v])             elif discovery[u] < discovery[v]:                                  # Forward Edge                 edges[1].append([u, v])             else:                                  # Cross Edge                 edges[3].append([u, v])          inStack[u] = False     finish[u] = timeStamp[0] = timeStamp[0] + 1  # Function to classify edges def classifyEdges(adj):     n = len(adj)          discovery = [0] * n     finish = [0] * n     visited = [False] * n     inStack = [False] * n     timeStamp = [0]          edges = [[] for _ in range(4)]          for i in range(n):         if not visited[i]:             dfs(i, adj, visited, inStack, discovery, finish, timeStamp, edges)          return edges  if __name__ == "__main__":     adj = [         [1, 2, 7],              [3],              [4],                [5],          [3, 6, 7],         [1],         [],         []     ]          edges = classifyEdges(adj)          edgeNames = ["Tree Edges", "Forward Edges", "Back Edges", "Cross Edges"]          for i in range(4):         print(edgeNames[i] + ":", end=" ")         for edge in edges[i]:             print(f"{edge[0]}->{edge[1]}", end=" ")         print() 
C#
// C# program to identify Tree, Back,  // Edge and Cross Edges in DFS of Graph  using System; using System.Collections.Generic;  class GfG {      static void dfs(int u, int[][] adj, bool[] visited,          bool[] inStack, int[] discovery, int[] finish,          int[] timeStamp, List<int[]>[] edges) {                  visited[u] = true;         inStack[u] = true;         discovery[u] = ++timeStamp[0];                  foreach (int v in adj[u]) {             if (!visited[v]) {                                  // Tree Edge                 edges[0].Add(new int[]{u, v});                 dfs(v, adj, visited, inStack,                  discovery, finish, timeStamp, edges);             } else {                 if (inStack[v]) {                                          // Back Edge                     edges[2].Add(new int[]{u, v});                 } else if (discovery[u] < discovery[v]) {                                          // Forward Edge                     edges[1].Add(new int[]{u, v});                 } else {                                          // Cross Edge                     edges[3].Add(new int[]{u, v});                 }             }         }                  inStack[u] = false;         finish[u] = ++timeStamp[0];     }      static List<int[]>[] classifyEdges(int[][] adj) {         int n = adj.Length;                  int[] discovery = new int[n];         int[] finish = new int[n];         bool[] visited = new bool[n];         bool[] inStack = new bool[n];         int[] timeStamp = {0};                  List<int[]>[] edges = new List<int[]>[4];         for (int i = 0; i < 4; i++) {             edges[i] = new List<int[]>();         }                  for (int i = 0; i < n; i++) {             if (!visited[i]) {                 dfs(i, adj, visited, inStack, discovery, finish, timeStamp, edges);             }         }                  return edges;     }      static void Main() {         int[][] adj = {             new int[] {1, 2, 7},                  new int[] {3},                  new int[] {4},                    new int[] {5},              new int[] {3, 6, 7},             new int[] {1},             new int[] {},             new int[] {}         };                  List<int[]>[] edges = classifyEdges(adj);                  string[] edgeNames = {"Tree Edges", "Forward Edges",          "Back Edges", "Cross Edges"};                  for (int i = 0; i < 4; i++) {             Console.Write(edgeNames[i] + ": ");             foreach (var edge in edges[i]) {                 Console.Write(edge[0] + "->" + edge[1] + " ");             }             Console.WriteLine();         }     } } 
JavaScript
// JavaScript program to identify Tree, Back,  // Edge and Cross Edges in DFS of Graph  function dfs(u, adj, visited, inStack, discovery,  finish, timeStamp, edges) {     visited[u] = true;     inStack[u] = true;     discovery[u] = ++timeStamp.value;      for (let v of adj[u]) {         if (!visited[v]) {                          // Tree Edge             edges[0].push([u, v]);             dfs(v, adj, visited, inStack, discovery,              finish, timeStamp, edges);         } else {             if (inStack[v]) {                                  // Back Edge                 edges[2].push([u, v]);             } else if (discovery[u] < discovery[v]) {                                  // Forward Edge                 edges[1].push([u, v]);             } else {                                  // Cross Edge                 edges[3].push([u, v]);             }         }     }      inStack[u] = false;     finish[u] = ++timeStamp.value; }  function classifyEdges(adj) {     let n = adj.length;          // Array to store discovery timeStamp of node     let discovery = new Array(n).fill(0);      // Array to store finish timeStamp of node     let finish = new Array(n).fill(0);      // Array to check if node is visited     let visited = new Array(n).fill(false);      // Array to check if node is in call stack     let inStack = new Array(n).fill(false);          let timeStamp = { value: 0 };      // Initialize result array with 4      // empty arrays for each edge type     let edges = [[], [], [], []];      // Run DFS for each unvisited vertex     for (let i = 0; i < n; i++) {         if (!visited[i]) {             dfs(i, adj, visited, inStack,              discovery, finish, timeStamp, edges);         }     }      return edges; }  let adj = [     [1, 2, 7],          [3],          [4],            [5],      [3, 6, 7],     [1],     [],     [] ];  let edges = classifyEdges(adj);  let edgeNames = ["Tree Edges", "Forward Edges", "Back Edges", "Cross Edges"];  for (let i = 0; i < 4; i++) {     let result = edgeNames[i] + ": ";     for (let edge of edges[i]) {         result += edge[0] + "->" + edge[1] + " ";     }     console.log(result); } 

Output
Tree Edges: 0->1 1->3 3->5 0->2 2->4 4->6 4->7  Forward Edges: 0->7  Back Edges: 5->1  Cross Edges: 4->3  

Time Complexity: O(V+E), where V is the number of nodes and E is the number of edges.
Auxiliary Space: O(V+E), due to recursive stack space, auxiliary arrays (discovery, finish, visited and inStack) and resultant array.


Next Article
Transitive Closure of a Graph using DFS

H

him0000
Improve
Article Tags :
  • Misc
  • Graph
  • DSA
  • DFS
  • graph-connectivity
Practice Tags :
  • DFS
  • Graph
  • Misc

Similar Reads

    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

    DFS in different language

    C Program for Depth First Search or DFS for a Graph
    Depth First Traversal (or DFS) for a graph is similar to Depth First Traversal of a tree. The only catch here is, that, unlike trees, graphs may contain cycles (a node may be visited twice). To avoid processing a node more than once, use a boolean visited array. A graph can have more than one DFS tr
    4 min read
    Depth First Search or DFS for a Graph - Python
    Depth First Traversal (or DFS) for a graph is similar to Depth First Traversal of a tree. The only catch here is, that, unlike trees, graphs may contain cycles (a node may be visited twice). To avoid processing a node more than once, use a Boolean visited array. A graph can have more than one DFS tr
    4 min read
    Java Program for Depth First Search or DFS for a Graph
    Depth First Traversal (or DFS) for a graph is similar to Depth First Traversal of a tree. Prerequisite: Graph knowledge is important to understand the concept of DFS. What is DFS?DFS or Depth First Traversal is the traversing algorithm. DFS can be used to approach the elements of a Graph. To avoid p
    3 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
    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
    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
    Depth First Search or DFS for disconnected Graph
    Given a Disconnected Graph, the task is to implement DFS or Depth First Search Algorithm for this Disconnected Graph. Example: Input: Disconnected Graph Output: 0 1 2 3 Algorithm for DFS on Disconnected Graph:In the post for Depth First Search for Graph, only the vertices reachable from a given sour
    7 min read
    Printing pre and post visited times in DFS of a graph
    Depth First Search (DFS) marks all the vertices of a graph as visited. So for making DFS useful, some additional information can also be stored. For instance, the order in which the vertices are visited while running DFS. Pre-visit and Post-visit numbers are the extra information that can be stored
    8 min read
    Tree, Back, Edge and Cross Edges in DFS of Graph
    Given a directed graph, the task is to identify tree, forward, back and cross edges present in the graph.Note: There can be multiple answers.Example:Input: GraphOutput:Tree Edges: 1->2, 2->4, 4->6, 1->3, 3->5, 5->7, 5->8 Forward Edges: 1->8 Back Edges: 6->2 Cross Edges: 5-
    9 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

    Variations of DFS implementations

    Implementation of DFS using adjacency matrix
    Depth First Search (DFS) has been discussed in this article which uses adjacency list for the graph representation. In this article, adjacency matrix will be used to represent the graph.Adjacency matrix representation: In adjacency matrix representation of a graph, the matrix mat[][] of size n*n (wh
    8 min read
    Graph implementation using STL for competitive programming | Set 1 (DFS of Unweighted and Undirected)
    We have introduced Graph basics in Graph and its representations. In this post, a different STL-based representation is used that can be helpful to quickly implement graphs using vectors. The implementation is for the adjacency list representation of the graph. Following is an example undirected and
    7 min read
    Graph implementation using STL for competitive programming | Set 2 (Weighted graph)
    In Set 1, unweighted graph is discussed. In this post, weighted graph representation using STL is discussed. The implementation is for adjacency list representation of weighted graph. Undirected Weighted Graph We use two STL containers to represent graph: vector : A sequence container. Here we use i
    7 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