Loading practice questions
What is the auxiliary space requirement of an exponential sort when used with iterative binary search?
Correct Answer: C — O(1)
Explanation:
Exponential search does not require any auxiliary space for finding the element being searched. So it has a constant auxiliary space O(1).