Which sorting algorithm has the least space complexity among Merge Sort, Quick Sort, and Heap Sort?
Explanation:
Heap Sort operates in-place, meaning it only requires a constant amount of additional memory regardless of the input size. Merge Sort typically needs O(n) extra space, while Quick Sort's space complexity depends on the recursion depth.
In the context of searching algorithms, what does the term 'adaptive' refer to?
Explanation:
Adaptive search algorithms modify their behavior based on the information gathered during the search process. For example, they might reorder elements based on access frequency to potentially improve future searches.
In merge sort, what is the maximum number of comparisons required to merge two sorted subarrays of size 'm' and 'n' into a single sorted array of size 'm+n'?
Explanation:
In the worst case, we need to compare elements from both subarrays one by one until only one element is left. We perform 'm + n - 1' comparisons in this scenario.
You have a sorted array of 1000 elements. What is the maximum number of comparisons a binary search algorithm would need to find a target element or determine it's not present?
Explanation:
Binary search halves the search space in each step. With 1000 elements, you can divide the search space in half roughly 10 times (log₂1000 ≈ 10) before reaching a single element.
Which of the following is NOT a characteristic of a stable sorting algorithm?
Explanation:
While many stable sorting algorithms like Merge Sort have O(n log n) complexity, stability itself is not tied to a specific time complexity. There can be stable algorithms with other complexities.
What is the primary data structure used in Heap Sort?
Explanation:
Heap Sort utilizes a binary heap to efficiently organize the data. The algorithm repeatedly extracts the maximum (or minimum) element from the heap and rebuilds it to maintain the heap property.
Which of the following is NOT a valid approach for array rotation?
Explanation:
Merge sort is a sorting algorithm, not inherently designed for array rotation. The other options are established array rotation techniques.
What is the time complexity of inserting an element into a Max Heap containing 'n' elements?
Explanation:
Inserting into a heap involves adding the element at the end and then performing a 'heapify' operation, which has a logarithmic time complexity due to traversing the height of the heap.
In which scenario is a sparse array particularly useful?
Explanation:
Sparse arrays efficiently store only the non-zero elements and their indices, saving memory for matrices with a high proportion of zeros.
You need to implement a buffer that stores a fixed number of recent data points, discarding older data as new data arrives. Which array-based structure would be most appropriate?
Explanation:
A circular array's wrap-around nature is ideal for managing a fixed-size buffer, efficiently overwriting older data as new data arrives.