InterviewStack.io LogoInterviewStack.io

Graphs and Graph Algorithms Questions

Graph representations (adjacency list and adjacency matrix) and the traversal algorithms applied to general, non-tree structures: BFS, DFS, topological sort (Kahn's algorithm and DFS-based), shortest paths (Dijkstra, Bellman-Ford, A*), minimum spanning trees, cycle detection, connected components, and union-find. Covers modeling a problem as a graph even when the underlying data is not obviously graph-shaped, such as state-space search, an implicit graph over strings or grid cells (for example Word Ladder), or a task-dependency graph, and implementing these traversals with a hash map or hash set as the storage vehicle (adjacency map, visited set, memoization table), not the subject being tested. The graded skill is traversal, ordering, connectivity, or shortest-path reasoning over nodes and edges. This topic does not own: traversal, reconstruction, or serialization of a single-rooted binary tree (preorder, inorder, postorder, or level-order implementation, rebuilding a tree from traversal arrays, lowest common ancestor, binary search tree validation), which belongs to binary trees and binary search trees even though a tree is technically a graph; hash table internals such as hash function design, collision resolution, and load factor and resizing, which belong to hashing and hash tables; and deriving or comparing algorithmic complexity across graph algorithms without implementing them, such as comparing the time complexity of BFS, DFS, Dijkstra, and A*, which belongs to time and space complexity analysis. One of the highest-signal areas in senior coding interviews.

EasyTechnical
24 practiced

Discuss how common graph algorithms should handle input edge cases: self-loops, parallel/multi-edges, isolated nodes, and nodes with multiple labels. For BFS/DFS, Dijkstra, union-find and topological sort, describe concrete pitfalls you might encounter in production and how to sanitize or validate input to make implementations robust.

EasyTechnical
25 practiced

Using Union-Find, implement a Python function that detects whether an undirected graph contains a cycle. Input: n nodes and edge list. Return True if a cycle exists, False otherwise. Ensure O(m α(n)) performance. Mention any edge cases to watch for in real-world topology graphs.

HardTechnical
29 practiced

Given a directed acyclic graph (DAG) representing tasks with durations and precedence constraints, design an algorithm to compute the earliest completion time for each task and the overall project completion time. Explain how topological ordering and the critical path method are combined and how to modify the algorithm when resources are constrained (limited parallel workers).

HardTechnical
21 practiced

Design and implement in Python a serialization and deserialization scheme for a general directed graph with cycles and labeled node IDs. Functions: serialize(graph) -> str and deserialize(s) -> graph. The format should preserve node identities and adjacency lists, handle disconnected graphs, and avoid infinite loops during serialization. You may use JSON or edge-list encodings; explain how you avoid duplicating nodes and how you handle large graphs.

EasyTechnical
23 practiced

Explain cycle detection in directed graphs using DFS with node color states (white/gray/black). Describe how back edges are identified and why this method reliably detects cycles even in complex pipeline dependency graphs. Also explain how you would return the actual nodes involved in the detected cycle.

Unlock Full Question Bank

Get access to all Graphs and Graph Algorithms interview questions and detailed answers.

Sign in to Continue

Join thousands of developers preparing for their dream job.