Real interview questions from top companies for Data structures. Includes theoretical concepts and coding problems.
What is the difference between a stack and a queue?
A stack is a Last-In-First-Out (LIFO) data structure, whereas a queue is a First-In-First-Out (FIFO) data structure.
What are the advantages of using a linked list over an array?
Linked lists have the advantage of dynamic memory allocation, efficient insertion and deletion of elements, and they can be used to implement stacks and queues.
What is the time complexity of searching an element in a binary search tree?
The time complexity of searching an element in a binary search tree is O(log n) in the average case and O(n) in the worst case.
What is the purpose of a hash table?
A hash table is a data structure that stores key-value pairs in an array using a hash function to map keys to indices of the array.
What is the difference between a graph and a tree?
A graph is a non-linear data structure consisting of nodes and edges, whereas a tree is a special type of graph with no cycles.
What is the time complexity of inserting an element into a heap?
The time complexity of inserting an element into a heap is O(log n).
What is the purpose of a trie data structure?
A trie is a data structure used to store a collection of strings in a way that allows for efficient retrieval of strings that match a given prefix.
What is the difference between a depth-first search and a breadth-first search?
A depth-first search explores as far as possible along each branch before backtracking, whereas a breadth-first search explores all the nodes at a given depth before moving on to the next depth level.
What is the time complexity of finding the minimum element in a stack?
The time complexity of finding the minimum element in a stack is O(n).
What is the purpose of a disjoint set data structure?
A disjoint set data structure is used to keep track of a set of elements partitioned into a number of non-overlapping (or disjoint) subsets.
What is the time complexity of inserting an element into a balanced binary search tree?
The time complexity of inserting an element into a balanced binary search tree is O(log n).
What is the difference between a min-heap and a max-heap?
A min-heap is a complete binary tree where each node is smaller than its children, whereas a max-heap is a complete binary tree where each node is larger than its children.
What is the purpose of a segment tree data structure?
A segment tree is a data structure used to store information about intervals, or segments, of an array, and to efficiently query and update the intervals.
What is the time complexity of finding the maximum element in a heap?
The time complexity of finding the maximum element in a heap is O(1).
What is the difference between a sparse matrix and a dense matrix?
A sparse matrix is a matrix that contains mostly zeros, whereas a dense matrix is a matrix that contains mostly non-zero elements.
What is the purpose of a suffix tree data structure?
A suffix tree is a data structure used to store all the suffixes of a given string in a way that allows for efficient querying and matching of substrings.
What is the time complexity of inserting an element into a hash table?
The time complexity of inserting an element into a hash table is O(1) in the average case and O(n) in the worst case.
What is the difference between a graph and a digraph?
A graph is an undirected graph, whereas a digraph is a directed graph.
What is the purpose of a bloom filter data structure?
A bloom filter is a data structure used to test whether an element is a member of a set, with a small probability of false positives.
What is the time complexity of finding the minimum element in a heap?
The time complexity of finding the minimum element in a heap is O(1).
Write a function to reverse a linked list
functionreverseList(head) {
let prev = null;
let curr = head;
while (curr) {
let next = curr.next;
curr.next = prev;
prev = curr;
curr = next;
}
return prev;
}
Write a function to find the middle element of a linked list
functionfindMiddle(head) {
let slow = head;
let fast = head;
while (fast && fast.next) {
slow = slow.next;
fast = fast.next.next;
}
return slow;
}
Write a function to check if a binary tree is balanced
functionisBalanced(root) {
functioncheck(node) {
if (!node) return0;
let left = check(node.left);
let right = check(node.right);
if (left === -1 || right === -1 || Math.abs(left - right) > 1) return -1;
return1 + Math.max(left, right);
}
returncheck(root) !== -1;
}
Write a function to find the lowest common ancestor of two nodes in a binary tree
functionlowestCommonAncestor(root, p, q) {
if (!root) returnnull;
if (root === p || root === q) return root;
let left = lowestCommonAncestor(root.left, p, q);
let right = lowestCommonAncestor(root.right, p, q);
if (left && right) return root;
return left ? left : right;
}
Write a function to validate a binary search tree
functionisValidBST(root) {
functioncheck(node, min, max) {
if (!node) returntrue;
if (node.val <= min || node.val >= max) returnfalse;
returncheck(node.left, min, node.val) && check(node.right, node.val, max);
}
returncheck(root, -Infinity, Infinity);
}
Write a function to find the maximum depth of a binary tree
functionmaxDepth(root) {
if (!root) return0;
return1 + Math.max(maxDepth(root.left), maxDepth(root.right));
}
Write a function to find the minimum depth of a binary tree
functionminDepth(root) {
if (!root) return0;
if (!root.left) return1 + minDepth(root.right);
if (!root.right) return1 + minDepth(root.left);
return1 + Math.min(minDepth(root.left), minDepth(root.right));
}
Write a function to find the maximum sum of a subarray
functionmaxSubArray(nums) {
let max = nums[0];
let sum = nums[0];
for (let i = 1; i < nums.length; i++) {
sum = Math.max(nums[i], sum + nums[i]);
max = Math.max(max, sum);
}
return max;
}
Write a function to find the first duplicate in an array
functionfirstDuplicate(arr) {
let set = newSet();
for (let num of arr) {
if (set.has(num)) return num;
set.add(num);
}
return -1;
}
SHARE ARTICLE
Choose Interviewer type
Please review your order carefully before confirming. Once your purchase is processed, refunds will not be available.