Intervue featured on Shark TankIntervue featured on Shark Tank - mobile banner

Top graph interview questions

Real interview questions from top companies for Graph. Includes theoretical concepts and coding problems.

What is a graph in computer science?

What are the different types of graphs?

What is the difference between a graph and a tree?

What is the adjacency matrix representation of a graph?

What is the adjacency list representation of a graph?

What is a graph traversal?

What are the different types of graph traversals?

What is the time complexity of BFS and DFS?

What is the purpose of Dijkstra's algorithm?

What is the time complexity of Dijkstra's algorithm?

What is the purpose of Bellman-Ford algorithm?

What is the time complexity of Bellman-Ford algorithm?

What is the purpose of Floyd-Warshall algorithm?

What is the time complexity of Floyd-Warshall algorithm?

What is a minimum spanning tree?

What is Kruskal's algorithm?

What is the time complexity of Kruskal's algorithm?

What is Prim's algorithm?

What is the time complexity of Prim's algorithm?

Given a graph represented as an adjacency list, write a function to perform a depth-first search (DFS) traversal of the graph.

Given a graph represented as an adjacency matrix, write a function to perform a breadth-first search (BFS) traversal of the graph.

Given a weighted graph represented as an adjacency list, write a function to find the shortest path between two vertices using Dijkstra's algorithm.

Given a weighted graph represented as an adjacency matrix, write a function to find the shortest path between two vertices using Bellman-Ford algorithm.

Given a graph represented as an adjacency list, write a function to find the minimum spanning tree of the graph using Kruskal's algorithm.

Given a graph represented as an adjacency matrix, write a function to find the minimum spanning tree of the graph using Prim's algorithm.