Say there is a file too big to be put to memory. How can I get a random line from it? Thanks.
Update: I want to the probabilities of getting each line to be equal.
|
Say there is a file too big to be put to memory. How can I get a random line from it? Thanks. Update: I want to the probabilities of getting each line to be equal. |
||||
|
|
|
Here's a solution. Take a look at the choose() method which does the real thing (the main() method repeatedly exercises choose(), to show that the distribution is indeed quite uniform). The idea is simple: when you read the first line it has a 100% chance of being chosen as the result. When you read the 2nd line it has a 50% chance of replacing the first line as the result. When you read the 3rd line it has a 33% chance of becoming the result. The fourth line has a 25%, and so on....
|
|||||||||
|
|
Either you
|
|||
|
|
|
Reading the entire file if you want only one line seems a bit excessive. The following should be more efficient:
This is a variant of rejection sampling. Line lengths include the line terminator character(s), hence MIN_LINE_LENGTH >= 1. (All the better if you know a tighter bound on line length). It is worth noting that the runtime of this algorithm does not depend on file size, only on line length, i.e. it scales much better than reading the entire file. |
|||
|
|
Looking over Itay's answer, it looks as though it reads the file a thousand times over after sampling one line of the code, whereas true reservoir sampling should only go over the 'tape once'. I've devised some code to go over code once with real reservoir sampling, based on this and the various descriptions on the web.
The basic premise is that you fill up the reservoir, and then go back to it and fill in random lines with a 1/ReservoirSize chance. I hope this provides more efficient code. Please let me know if this doesn't work for you, as I've literally knocked it up in half an hour. |
|||
|
|
|
Use a BufferedReader and read line wise. Use the java.util.Random object to stop randomly ;) |
|||||||||
|