I have an array of numbers from 1 to 100 (both inclusive). The size of the array is 100. The numbers are randomly added to the array, but there is one random empty slot in the array. What is the quickest way to find that slot as well as the number that should be put in the slot? A Java solution is preferable.
|
|
You can do this in O(n). Iterate through the array and compute the sum of all numbers. Now, sum of natural numbers from 1 to N, can be expressed as Subtract the sum of the array from That is the missing number. The empty slot can be detected during the iteration in which the sum is computed.
|
|||||||||||||||||
|
|
This was an Amazon interview question and was originally answered here: We have numbers from 1 to 52 that are put into a 51 number array, what's the best way to find out which number is missing? It was answered, as below:
It was also blogged here: Software Job - Interview Question |
|||||||
|
|
5050 - (sum of all values in the array) = missing number
|
|||||||||
|
|
Well, use a bloom filter.
|
|||
|
|
|
|||||
|
|
Another homework question. A sequential search is the best that you can do. As for a Java solution, consider that an exercise for the reader. :P |
|||
|
|
|
This is c# but it should be pretty close to what you need:
|
|||
|
|
|
The solution that doesn't involve repetitive additions or maybe the n(n+1)/2 formula doesn't get to you at an interview time for instance. You have to use an array of 4 ints (32 bits) or 2 ints (64 bits). Initialize the last int with (-1 & ~(1 << 31)) >> 3. (the bits that are above 100 are set to 1) Or you may set the bits above 100 using a for loop.
Example: (32 bit version) lets say that the missing number is 58. That means that the 26th bit (left to right) of the second integer is set to 0. The first int is -1 (all bits are set) so, we go ahead for the second one and add to "no" the number 32. The second int is different from -1 (a bit is not set) so, by applying the NOT (~) operator to the number we get 64. The possible numbers are 2 at the power x and we may compute x by using log on base 2; in this case we get log2(64) = 6 => 32 + 32 - 6 = 58. Hope this helps. |
||||
|
|
|
The formula missing number = sum - (n * (n+1)/2 ) works, is there way to do this with bit operators |
|||||
|
|
I think the easiest and possibly the most efficient solution would be to loop over all entries and use a bitset to remember which numbers are set, and then test for 0 bit. The entry with the 0 bit is the missing number. |
|||
|
|
|
|||
|
|
|
If the array is randomly filled, then at the best you can do a linear search in O(n) complexity. However, we could have improved the complexity to O(log n) by divide and conquer approach similar to quick sort as pointed by giri given that the numbers were in ascending/descending order. |
|||
|
|
|
This Program finds missing numbers
|
|||
|
|
You could do it a lot faster if you did just did a binary search. O(log n) time.
|
|||||
|
|
One thing you could do is sort the numbers using quick sort for instance. Then use a for loop to iterate through the sorted array from 1 to 100. In each iteration, you compare the number in the array with your for loop increment, if you find that the index increment is not the same as the array value, you have found your missing number as well as the missing index. |
|||
|
|
|
Now I'm now too sharp with the Big O notations but couldn't you also do something like (in Java)
where numbers is the array with your numbers from 1-100. From my reading of the question it did not say when to write out the missing number. Alternatively if you COULD throw the value of i+1 into another array and print that out after the iteration. Of course it might not abide by the time and space rules. As I said. I have to strongly brush up on Big O. |
|||
|
|
|
Here is a simple program to find the missing numbers in an integer array
|
|||
|
|
|
Quick sort is the best choice with maximum efficiency.... |
|||||||
|