vote up 2 vote down star
1

If one computer can only hold 1 million numbers, how to find out the median number from 100 million numbers?

flag
1  
stackoverflow.com/questions/1311764/… – Ron Sep 25 at 2:29
At best, this should probably be Community Wiki. – Brad Gilbert Sep 25 at 5:36
This is a valid programming related question, how to compute the median in a memory efficient way. It just comes along as a puzzle. – starblue Sep 25 at 7:04
Use the "Median of medians" approach. – starblue Sep 25 at 7:08

closed as not programming related by womp, ennuikiller, Steven A. Lowe, ChssPly76, Tom Leys Sep 25 at 2:52

5 Answers

vote up 0 vote down

I think I've got it! It isn't efficient (On^2), but logically it seems like it would work.

In pseudo-code:

for (locationCurrent=1;locationCurrent<100M,locationCurrent++)
{
   itemsToLeft=0;
   currentItem = readNumber(locationCurrent);

    for (locationCompare=1;locationCompare<100M,locationCompare++)
    {          
      if ((currentItem>=readNumber(LocationCompare)) &&  
          (locationCompare!=LocationCurrent))
      { itemsToLeft++;}

      /* go on to next current item if this one is past the median. */
      if (itemsToLeft>500000) break; 
    }

    if (itemsToLeft==500000) return currentItem
}
link|flag
vote up 0 vote down

Find the middle million numbers and then report the median of them. (Hmmm, now how to find those middle million numbers...)

link|flag
vote up 1 vote down

Using 101 computers and a sort-merge just like a database.

link|flag
Lol. This answer should feature as the best programmer joke! – Ashwin Sep 25 at 2:13
I'll take it as one of my answers.:) – Stephen Hsu Sep 25 at 2:14
vote up 3 vote down

Reduce the problem to a more difficult one: sort the 100 million numbers using merge sort Then, take the 50 millionth element.

link|flag
But the computer can hold 1 million numbers only, how can I find the 50 millionth one? – Stephen Hsu Sep 25 at 2:12
1  
On the tape (oh, right, this is no longer the 80s. I meant "on the disk"), at the 50 millionth position. You have storage for your 100M elements, right? Because if you don't (elements read from a stream) the exercice can be proved impossible by a counting argument. – Pascal Cuoq Sep 25 at 2:15
vote up 2 vote down

Do an external sort and then scan once for the median.

Hopefully, the real problem was "how do I do an external sort"? (If this is homework...I want to help in the right way. :-)

link|flag
This is what I thought. :) But I'm not sure it's the correct answer, so I asked here. – Stephen Hsu Sep 25 at 2:11
1  
There has got to be a way to do this with the literal constraint that the device can only store 1 million numbers. Using the external sort seems like cheating. Now I'm gonna be up all night thinking about this. – JohnFx Sep 25 at 2:28
Heh, I wondered that myself. It's a really good question. – DigitalRoss Sep 25 at 17:47

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