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

I have a tab separated UTF-8 file, where the records are sorted on one field. But, the line size is not fixed, so cannot jump into a particular position directly. How can I perform binary search on this?

Example:

line 1: Alfred Brendel /m/011hww /m/0crsgs6,/m/0crvt9h,/m/0cs5n_1,/m/0crtj4t,/m/0crwpnw,/m/0cr_n2s,/m/0crsgyh

line 2: Rupert Sheldrake /m/011ybj /m/0crtszs

share|improve this question
What do you mean by line size not fixed? Can you show one test case? – Renjith Jan 16 at 15:56
So, in short, he means the length of each line is not uniform. (Just to clarify for other readers.) – BlackVegetable Jan 16 at 16:15

4 Answers

You know the number of bytes your hole file contains. Lets say n -> search-interval [l, r] with l=0, r=n.

  • Estimate the middle of your search-interval m=(r-l)/2. At this location go as much bytes to the left (right would also work) until you find a tab-character (byte==9 (9 is the ASCII and UTF8 code for a tab)) [lets name this position mReal ] and decode the one line starting that tab.

  • determine if you have to take the first 'half' (=> new search-interval is [l, mReal]) or the second 'half' (=> new search-interval is [mReal, r]) for the next search step.

share|improve this answer
Did you mean to say that the ASCII code for tab is 9? – BlackVegetable Jan 16 at 15:59
Sorry I didn't get your solution. Could you please elaborate a bit? – Esha Ghosh Jan 16 at 16:05
@BlackVegetable: At least on my computer \t == 9 [in ASCII and UTF8] – MrSmith42 Jan 16 at 16:05
My comment wasn't intending to imply you were incorrect on the ASCII code, only that it wasn't clear that was what you meant by saying byte==9. – BlackVegetable Jan 16 at 16:06
@BlackVegetable: Sorry I misunderstood your comment [happens sometimes when you are not a native speaker] – MrSmith42 Jan 16 at 16:14
show 2 more comments
public class YourTokenizer {

    public static final String EPF_EOL = "\t";

    public static final int READ_SIZE = 4 * 1024 ;

    /** The EPF stream buffer. */
    private StringBuilder buffer = new StringBuilder();

    /** The EPF stream. */
    private InputStream stream = null;

    public YourTokenizer(final InputStream stream) {
        this.stream = stream;
    }

    private String getNextLine() throws IOException {
        int pos = buffer.indexOf(EPF_EOL);
        if (pos == -1) {
            // eof-of-line sequence isn't available yet, read more of the file
            final byte[] bytes = new byte[READ_SIZE];
            final int readSize = stream.read(bytes, 0, READ_SIZE);


            buffer.append(new String(bytes));
            pos = buffer.indexOf(EPF_EOL);
            if (pos == -1) {
                if (readSize < READ_SIZE) {
                    // we have reached the end of the stream and what we're looking for still can't be found
                    throw new IOException("Premature end of stream");
                }
                return getNextLine();
            }
        }

        final String data = buffer.substring(0, pos);
        pos += EPF_EOL.length();
        buffer = buffer.delete(0, pos);
        return data;
    }

}

end in main :

final InputStream stream = new FileInputStream(file);
 final YourTokenizer tokenizer = new YourTokenizer(stream);

 String line = tokenizer.getNextLine();
 while(line != line) {
   //do something
   line = tokenizer.getNextLine();
 }
share|improve this answer
1  
Can you elaborate how this would be used in a binary search of the file? – Peter Lawrey Jan 16 at 16:06
this give you all tokens separated by EPF_EOL string. So you can easy receive all fields – iMysak Jan 16 at 16:08

You can jump to the middle of bytes. From there you can find the end of that line and you can read the next line from that point. If you need to search back, take a one quarter point, or three quarters and find the line each time. Eventually you will narrow it down to one line.

share|improve this answer

I think you can guess the line length from the file size

Yet When you can't even guess the length of the lines then I think it will be better to chose from generating a random number.

share|improve this answer
1  
Could you elaborate a bit? – Esha Ghosh Jan 16 at 16:04

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.