Statement
Solution
Naive approach
A naive approach would be to first sort the array using quick sort and then traverse the array with two adjacent pointers. Since the integers are sorted, the difference between two adjacent array elements should be if there is no missing integer. We can start by having the first pointer at index 0
and the second pointer at index 1
, moving both step forward each time. If the difference is greater than 1, our missing value would be the value of the first pointer .
The time complexity for this approach becomes . The space complexity is .
Optimized approach using cyclic sort
The intuition behind using this approach uses the unique property where each element should match its index, given data in a specific range. The algorithm starts by sorting the array so that each element is placed in its correct position (i.e., its value matches its index). After sorting, the first instance where an element does not match its index indicates the missing number.
Let’s walkthrough the detailed steps of this algorithm: