Real interview questions from top companies for Graph. Includes theoretical concepts and coding problems.
What is a graph in computer science?
A graph is a non-linear data structure consisting of nodes or vertices connected by edges.
What are the different types of graphs?
There are several types of graphs, including undirected graphs, directed graphs, weighted graphs, and unweighted graphs.
What is the difference between a graph and a tree?
A tree is a special type of graph that is connected and has no cycles, whereas a graph can have cycles and may not be connected.
What is the adjacency matrix representation of a graph?
The adjacency matrix representation of a graph is a matrix where the entry at row i and column j is 1 if there is an edge between vertex i and vertex j, and 0 otherwise.
What is the adjacency list representation of a graph?
The adjacency list representation of a graph is a list of edges, where each edge is represented as a pair of vertices.
What is a graph traversal?
A graph traversal is the process of visiting each vertex in a graph exactly once, starting from a given vertex.
What are the different types of graph traversals?
There are two main types of graph traversals: breadth-first search (BFS) and depth-first search (DFS).
What is the time complexity of BFS and DFS?
The time complexity of BFS and DFS is O(V + E), where V is the number of vertices and E is the number of edges.
What is the purpose of Dijkstra's algorithm?
Dijkstra's algorithm is used to find the shortest path between two vertices in a weighted graph.
What is the time complexity of Dijkstra's algorithm?
The time complexity of Dijkstra's algorithm is O(E + V log V), where E is the number of edges and V is the number of vertices.
What is the purpose of Bellman-Ford algorithm?
The Bellman-Ford algorithm is used to find the shortest path from a source vertex to all other vertices in a weighted graph.
What is the time complexity of Bellman-Ford algorithm?
The time complexity of Bellman-Ford algorithm is O(VE), where V is the number of vertices and E is the number of edges.
What is the purpose of Floyd-Warshall algorithm?
The Floyd-Warshall algorithm is used to find the shortest path between all pairs of vertices in a weighted graph.
What is the time complexity of Floyd-Warshall algorithm?
The time complexity of Floyd-Warshall algorithm is O(V^3), where V is the number of vertices.
What is a minimum spanning tree?
A minimum spanning tree is a subgraph that connects all the vertices in a graph with the minimum total edge weight.
What is Kruskal's algorithm?
Kruskal's algorithm is a greedy algorithm used to find the minimum spanning tree of a graph.
What is the time complexity of Kruskal's algorithm?
The time complexity of Kruskal's algorithm is O(E log E), where E is the number of edges.
What is Prim's algorithm?
Prim's algorithm is a greedy algorithm used to find the minimum spanning tree of a graph.
What is the time complexity of Prim's algorithm?
The time complexity of Prim's algorithm is O(E + V log V), where E is the number of edges and V is the number of vertices.
Given a graph represented as an adjacency list, write a function to perform a depth-first search (DFS) traversal of the graph.
functiondfs(graph, start) {
var visited = {};
functiondfsHelper(node) {
visited[node] = true;
console.log(node);
for (var neighbor in graph[node]) {
if (!visited[neighbor]) {
dfsHelper(neighbor);
}
}
}
dfsHelper(start);
}
Given a graph represented as an adjacency matrix, write a function to perform a breadth-first search (BFS) traversal of the graph.
functionbfs(graph, start) {
var visited = {};
var queue = [start];
visited[start] = true;
while (queue.length > 0) {
var node = queue.shift();
console.log(node);
for (var i = 0; i < graph.length; i++) {
if (graph[node][i] === 1 && !visited[i]) {
queue.push(i);
visited[i] = true;
}
}
}
}
Given a weighted graph represented as an adjacency list, write a function to find the shortest path between two vertices using Dijkstra's algorithm.
functiondijkstra(graph, start, end) {
var distances = {};
var previous = {};
var queue = [start];
distances[start] = 0;
while (queue.length > 0) {
var node = queue.shift();
for (var neighbor in graph[node]) {
var distance = distances[node] + graph[node][neighbor];
if (distance < distances[neighbor] || distances[neighbor] === undefined) {
distances[neighbor] = distance;
previous[neighbor] = node;
queue.push(neighbor);
}
}
}
var path = [];
var node = end;
while (node !== start) {
path.push(node);
node = previous[node];
}
path.push(start);
return path.reverse();
}
Given a weighted graph represented as an adjacency matrix, write a function to find the shortest path between two vertices using Bellman-Ford algorithm.
functionbellmanFord(graph, start, end) {
var distances = {};
var predecessor = {};
for (var i = 0; i < graph.length; i++) {
distances[i] = Infinity;
}
distances[start] = 0;
for (var i = 0; i < graph.length - 1; i++) {
for (var j = 0; j < graph.length; j++) {
for (var k = 0; k < graph.length; k++) {
if (graph[j][k] !== 0 && distances[j] + graph[j][k] < distances[k]) {
distances[k] = distances[j] + graph[j][k];
predecessor[k] = j;
}
}
}
}
var path = [];
var node = end;
while (node !== start) {
path.push(node);
node = predecessor[node];
}
path.push(start);
return path.reverse();
}
Given a graph represented as an adjacency list, write a function to find the minimum spanning tree of the graph using Kruskal's algorithm.
functionkruskal(graph) {
var mst = [];
var parent = {};
var rank = {};
for (var node in graph) {
parent[node] = node;
rank[node] = 0;
}
var edges = [];
for (var node in graph) {
for (var neighbor in graph[node]) {
edges.push({
node: node,
neighbor: neighbor,
weight: graph[node][neighbor],
});
}
}
edges.sort(function (a, b) {
return a.weight - b.weight;
});
for (var i = 0; i < edges.length; i++) {
var node = edges[i].node;
var neighbor = edges[i].neighbor;
var weight = edges[i].weight;
if (find(parent, node) !== find(parent, neighbor)) {
mst.push({ node: node, neighbor: neighbor, weight: weight });
union(parent, rank, node, neighbor);
}
}
return mst;
}
functionfind(parent, node) {
if (parent[node] !== node) {
parent[node] = find(parent, parent[node]);
}
return parent[node];
}
functionunion(parent, rank, node, neighbor) {
var root1 = find(parent, node);
var root2 = find(parent, neighbor);
if (rank[root1] < rank[root2]) {
parent[root1] = root2;
} elseif (rank[root1] > rank[root2]) {
parent[root2] = root1;
} else {
parent[root2] = root1;
rank[root1]++;
}
}
Given a graph represented as an adjacency matrix, write a function to find the minimum spanning tree of the graph using Prim's algorithm.
functionprim(graph) {
var mst = [];
var visited = {};
var start = 0;
visited[start] = true;
while (true) {
var minWeight = Infinity;
var node = -1;
var neighbor = -1;
for (var i = 0; i < graph.length; i++) {
if (visited[i]) {
for (var j = 0; j < graph.length; j++) {
if (!visited[j] && graph[i][j] !== 0 && graph[i][j] < minWeight) {
minWeight = graph[i][j];
node = i;
neighbor = j;
}
}
}
}
if (node === -1) {
break;
}
mst.push({ node: node, neighbor: neighbor, weight: minWeight });
visited[neighbor] = true;
}
return mst;
}
SHARE ARTICLE
Choose Interviewer type
Please review your order carefully before confirming. Once your purchase is processed, refunds will not be available.