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.

MediumTechnical
22 practiced

Solve the maximum weight independent set on a tree: given a tree where each node has a non-negative weight, select a set of nodes with no adjacent nodes maximizing total weight. Implement in Python with O(N) time using tree DP. Provide signature: def max_independent_set(adj: Dict[int, List[int]], weights: Dict[int,int]) -> int and explain your DP states.

EasyTechnical
22 practiced

Implement a recursive DFS in Python on a graph represented as an adjacency list (dict int -> list[int]). Provide def dfs(graph, start): -> List[int] that returns nodes in discovery order for nodes reachable from start. Graph can contain cycles and self-loops; ensure you avoid infinite recursion and handle missing nodes gracefully.

MediumTechnical
23 practiced

You're designing a monitoring system that frequently traverses a service graph. Compare adjacency list, adjacency matrix, and compressed-sparse-row (CSR) representations given queries like: iterate neighbors, check edge existence, batch updates, and parallel traversal. Consider cache locality, memory usage, update frequency, and implications for sparse (E << V^2) vs dense graphs.

MediumTechnical
25 practiced

For the following scenarios choose the most appropriate shortest-path algorithm and justify your choice: (a) city road routing with non-negative weights and frequent queries, (b) currency exchange graph where arbitrage implies negative cycles, (c) computing pairwise social network distances on unweighted graphs. Include complexity and practical concerns.

MediumTechnical
24 practiced

Implement a BFS-based bipartiteness check in Python. Function is_bipartite(graph) should return True/False and a 2-coloring if bipartite. Graph may be disconnected. Explain why BFS/DFS coloring works and the complexity.

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.