There is a file that contains 10G(1000000000) number of integers, please find the Median of these integers. you are given 2G memory to do this. Can anyone come up with an reasonable way? thanks!
|
|
Create an array of 8-byte longs that has 2^16 entries. Take your input numbers, shift off the bottom sixteen bits, and create a histogram. Now you count up in that histogram until you reach the bin that covers the midpoint of the values. Pass through again, ignoring all numbers that don't have that same set of top bits, and make a histogram of the bottom bits. Count up through that histogram until you reach the bin that covers the midpoint of the (entire list of) values. Now you know the median, in Here's some sample Scala code that does this:
and here it is working on a small set of input data:
If you have 64 bit integers stored, you can use the same strategy in 4 passes instead. |
|||||||||||||
|
|
You can use the Medians of Medians algorithm. |
|||||||||||
|
|
If the file is in text format, you may be able to fit it in memory just by converting things to integers as you read them in, since an integer stored as characters may take more space than an integer stored as an integer, depending on the size of the integers and the type of text file. EDIT: You edited your original question; I can see now that you can't read them into memory, see below. If you can't read them into memory, this is what I came up with:
|
|||||||||||||||||||
|
The amount of memory used is adjustable and unaffected by the number of integers in the original file. One caveat of the external sort is that the intermediate sorting data needs to be written to disk. Given
|
||||
|
|
|
Make a pass through the file and find count of integers and minimum and maximum integer value. Take midpoint of min and max, and get count, min and max for values either side of the midpoint - by again reading through the file. partition count > count => median lies within that partition. Repeat for the partition, taking into account size of 'partitions to the left' (easy to maintain), and also watching for min = max. Am sure this'd work for an arbitrary number of partitions as well. |
|||
|
|
Check out Torben's method in here:http://ndevilla.free.fr/median/median/index.html. It also has implementation in C at the bottom of the document. |
|||
|
|
|
My best guess that probabilistic median of medians would be the fastest one. Recipe:
But there some notes :
EDIT: I've played a bit with this algorithm, changed a bit idea - in each iteration we should sum X_new with decreasing weight, such as:
Point is to make calculation of median to converge fast to some number in very small amount of iterations. So that very approximate median (with big error) is found between 100000000 array elements in only 252 iterations !!! Check this C experiment:
Opps seems i'm talking about mean, not median. If it is so, and you need exactly median, not mean - ignore my post. In any case mean and median are very related concepts. Good luck. |
||||
|
|