0
0
DSA Cprogramming~10 mins

Cycle Detection in Directed Graph in DSA C - Execution Trace

Choose your learning style9 modes available
Concept Flow - Cycle Detection in Directed Graph
Start at each unvisited node
Mark node as visited and in recursion stack
For each neighbor
If neighbor not visited
Recurse on neighbor
If neighbor in recursion stack
Cycle detected
Remove node from recursion stack
Repeat for all nodes
No cycle found if all done
The algorithm visits each node, tracks recursion stack to detect back edges indicating cycles.
Execution Sample
DSA C
bool dfs(int node) {
  visited[node] = true;
  recStack[node] = true;
  for (int neighbor : graph[node]) {
    if (!visited[neighbor] && dfs(neighbor)) return true;
    else if (recStack[neighbor]) return true;
  }
  recStack[node] = false;
  return false;
}
DFS visits nodes marking recursion stack to find cycles in directed graph.
Execution Table
StepOperationCurrent NodeVisited SetRecursion StackActionCycle DetectedVisual State
1Start DFS at node 00[0][0]Mark 0 visited and in recursion stackNo0(visited,recStack)
2Visit neighbor 1 of 01[0,1][0,1]Mark 1 visited and in recursion stackNo0->1(visited,recStack)
3Visit neighbor 2 of 12[0,1,2][0,1,2]Mark 2 visited and in recursion stackNo0->1->2(visited,recStack)
4Visit neighbor 0 of 20[0,1,2][0,1,2]0 is in recursion stack -> cycle detectedYesCycle found at 0 in 0->1->2
5Backtrack from 22[0,1,2][0,1]Remove 2 from recursion stackYes0->1(visited,recStack)
6Backtrack from 11[0,1,2][0]Remove 1 from recursion stackYes0(visited,recStack)
7Backtrack from 00[0,1,2][]Remove 0 from recursion stackYes0,1,2 visited
8Check node 3 (unvisited)3[0,1,2,3][3]Mark 3 visited and in recursion stackYes3(visited,recStack)
9Visit neighbor 4 of 34[0,1,2,3,4][3,4]Mark 4 visited and in recursion stackYes3->4(visited,recStack)
10No neighbors for 44[0,1,2,3,4][3,4]Remove 4 from recursion stackYes3(visited,recStack)
11Backtrack from 33[0,1,2,3,4][]Remove 3 from recursion stackYesAll nodes visited
12All nodes checked-[0,1,2,3,4][]No cycle found in remaining nodesYesCycle detected in graph
13End-[0,1,2,3,4][]DFS completeYesFinal state
💡 Cycle detected at step 4 when node 0 is found in recursion stack
Variable Tracker
VariableStartAfter Step 1After Step 2After Step 3After Step 4After Step 7After Step 11Final
visited[][0][0,1][0,1,2][0,1,2][0,1,2][0,1,2,3,4][0,1,2,3,4]
recStack[][0][0,1][0,1,2][0,1,2][][][]
Key Moments - 3 Insights
Why do we check if a neighbor is in the recursion stack to detect a cycle?
Because if a neighbor is in the recursion stack, it means we have a back edge to an ancestor node in the current DFS path, indicating a cycle. See step 4 in execution_table where node 0 is in recStack.
Why do we remove nodes from the recursion stack after visiting all neighbors?
Removing nodes from recursion stack means we finished exploring that path. It prevents false cycle detection from nodes already fully processed. See steps 5-7 where nodes are removed from recStack.
What happens if the graph has disconnected parts?
The algorithm starts DFS from each unvisited node to cover all parts. See steps 8-11 where nodes 3 and 4 are visited after the first cycle detection.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table at step 4, why is a cycle detected?
ABecause node 0 is in the recursion stack
BBecause node 2 is not visited
CBecause node 1 has no neighbors
DBecause recursion stack is empty
💡 Hint
Check the 'Cycle Detected' and 'Recursion Stack' columns at step 4 in execution_table
At which step does the recursion stack become empty after visiting node 0 and its neighbors?
AStep 4
BStep 7
CStep 3
DStep 11
💡 Hint
Look at the 'recStack' variable in variable_tracker after step 7
If node 2 had no edge back to node 0, how would the cycle detection change?
ACycle would be detected earlier
BNo cycle would be detected at step 4
CRecursion stack would never be empty
DVisited set would be empty
💡 Hint
Refer to step 4 in execution_table where cycle is detected due to edge from 2 to 0
Concept Snapshot
Cycle Detection in Directed Graph using DFS:
- Visit each node, mark visited and recursion stack
- For each neighbor:
  - If not visited, recurse
  - If in recursion stack, cycle found
- Remove node from recursion stack after all neighbors
- Repeat for all nodes to cover disconnected parts
Full Transcript
This visualization shows how cycle detection in a directed graph works using depth-first search (DFS). We start DFS from each unvisited node, marking nodes as visited and adding them to a recursion stack to track the current path. When visiting neighbors, if a neighbor is not visited, we recurse into it. If a neighbor is already in the recursion stack, it means we found a back edge, indicating a cycle. After exploring all neighbors, we remove the node from the recursion stack. The execution table traces each step, showing the visited set, recursion stack, and when cycles are detected. The variable tracker shows how visited and recursion stack change over time. Key moments clarify why recursion stack is used and how disconnected graph parts are handled. The visual quiz tests understanding of cycle detection steps and conditions.