If one computer can only hold 1 million numbers, how to find out the median number from 100 million numbers?
|
1
|
|||||||||||
|
closed as not programming related by womp, ennuikiller, Steven A. Lowe, ChssPly76, Tom Leys Sep 25 at 2:52 |
|
|
I think I've got it! It isn't efficient (On^2), but logically it seems like it would work. In pseudo-code:
|
|||
|
|
|
|
Find the middle million numbers and then report the median of them. (Hmmm, now how to find those middle million numbers...) |
||
|
|
|
|
Using 101 computers and a sort-merge just like a database. |
||||
|
|
|
Reduce the problem to a more difficult one: sort the 100 million numbers using merge sort Then, take the 50 millionth element. |
||||||
|
|
|
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. :-) |
||||||||
|
