Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question exist only because of pure curiosity. Not a homework.

Find the fastest way to find two missing number in an array 1..n

So, In a related post: Quickest way to find missing number in an array of numbers I found out that you can do this pretty quickly by summing up and substracting total.

but what about 2 numbers?

So, our options are:

  1. Sequential search
  2. Summing up items, substracting from total for all items from 1..n, then searching all possible cases.

Anything else? Possible to have O(n) solution? I found this in ruby section of one of the websites, but any language is considered (unless there are some specific things for a language)

share|improve this question
You could simply sort the array, which can be done in O(n log n). Afterwards you could loop over the sorted data and detected if a number i is not followed be n+1. This would add another n but would still be in O(n log n). – Martin Thurau Dec 16 '11 at 10:30
-1. Your question is unclear. What do you mean that numbers are missing in the array 1..n (probably you meant (1..n).to_a)? Doesn't it include all of them? If there is some detail on the link, it still does not help. You need to state the question clearly here. – sawa Dec 16 '11 at 14:19

7 Answers

up vote 2 down vote accepted

The simple way (and pretty fast too:)

a = [1,2,3,5,7]
b = (1..7).to_a
p b-a #=> [4, 6]
share|improve this answer
2  
@Michael J. Barber Array a does not have to be sorted for this to work. – steenslag Dec 16 '11 at 16:54
  1. Find the sum of the numbers S=a1+...+an.
  2. Also find the sum of squares T=a1*a1+...+an*an.
  3. You know that the sum should be S'=1+...+n=n(n+1)/2
  4. You know that the sum of squares should be T'=1^2+...+n^2=n(n+1)(2n+1)/6.
  5. Now set up the following system of equations x+y=S'-S, x^2+y^2=T'-T.
  6. Solve by writing x^2+y^2=(x+y)^2-2xy => xy=((S'-S)^2-(T'-T))/2. And now the numbers are merely the roots of the quadratic in z: z^2-(S'-S)z+((S'-S)^2-(T'-T))/2=0.
share|improve this answer

I got the fastest time among my tests with the following approach (a little bit faster than with substitution of 2 arrays):

n = 10
input = [3, 6, 8, 2, 1, 9, 5, 7]

temp = Array.new(n+1, 0)
input.each { |item| temp[item] = 1 }
result = []
1.upto(n) { |i| result << i if temp[i] == 0 }
share|improve this answer

I like the idea of summing up and comparing the result to the expected value. So my idea is to divide the array in equal parts, sum these up and see if both sides are missing a number. If one half is correct you can iterate over the other half (containing both missing numbers..... that sounds so wrong from the linguistic point of view >.<) until you managed to separate the numbers.

This approach is quite fast if abs(i-j) is big - or in words: when the missing numbers are quite far away from each other.

share|improve this answer
the array is not sorted... – Karoly Horvath Dec 16 '11 at 10:53

Create a set of the numbers 1 through N. Calculate the difference of this set with the set of numbers from the array. As the numbers are distinct, the result will be the missing numbers. O(N) time and space.

share|improve this answer
either the set creation or the difference calculation is slower than O(N) regardless of the implementation. – Karoly Horvath Dec 16 '11 at 10:55
1  
@yi_H Use hash tables. Or, since it's a finite set, arrays of length N. Both of these are O(N). – Michael J. Barber Dec 16 '11 at 11:00
/* The output of this function is stored at *x and *y */

void getTwoElements(int arr[], int n, int *x, int *y) {
  int xor1;   /* Will hold xor of all elements and numbers from 1 to n */
  int set_bit_no;  /* Will have only single set bit of xor1 */
  int i;
  *x = 0;
  *y = 0;

  xor1 = arr[0];

  /* Get the xor of all array elements elements */
  for(i = 1; i < n; i++)
     xor1 = xor1^arr[i];

  /* XOR the previous result with numbers from 1 to n+2*/
  for(i = 1; i <= n+2; i++)
     xor1 = xor1^i;

  /* Get the rightmost set bit in set_bit_no */
  set_bit_no = xor1 & ~(xor1-1);

  /* Now divide elements in two sets by comparing rightmost set
   bit of xor1 with bit at same position in each element. Also, get XORs
   of two sets. The two XORs are the output elements.
   The following two for loops serve the purpose */
  for(i = 0; i < n; i++) {
    if(arr[i] & set_bit_no)
     *x = *x ^ arr[i]; /* arr[i] belongs to first set */
    else
     *y = *y ^ arr[i]; /* arr[i] belongs to second set*/
  }

  for(i = 1; i <= n+2; i++) {
    if(i & set_bit_no)
     *x = *x ^ i; /* i belongs to first set */
    else
     *y = *y ^ i; /* i belongs to second set*/
  }

  /* Now *x and *y hold the desired output elements */
}
share|improve this answer

What if you didn't know what the numbers in the array were? If you were just given an array and told there was a number missing, but you didn't have any knowledge of what numbers were in there you could use this:

array = array.uniq.sort!  # Just to make sure there are no dupes and it's sorted.
i = 0
while i < n.length-1
  puts n[i] + 1 if n[i] + 1 != n[i+1]
  i+=1
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.