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 hashmap with byte[] keys. I'd like to sort it through a TreeMap.

What is the most effective way to implement the comparator for lexicographic order?

share|improve this question

5 Answers

up vote 6 down vote accepted

Using Guava, you can use either of:

The UnsignedBytes comparator appears to have an optimized form using Unsafe that it uses if it can. Comments in the code indicate that it may be at least twice as fast as a normal Java implementation.

share|improve this answer
do we have the solution in "Java",if so please post a working example. – Deepak Feb 25 '11 at 9:57
As ColinD says in the comment to my answer, my solution is the same as the non optimized one in Guava. So you can straight use mine, which is a working example, or follow ColinD's links. – marcorossi Feb 25 '11 at 12:53
@Deepak: This is Java, and there's no need to post an example. – ColinD Feb 25 '11 at 14:10

Found this nice piece of code in Apache Hbase:

    public int compare(byte[] left, byte[] right) {
        for (int i = 0, j = 0; i < left.length && j < right.length; i++, j++) {
            int a = (left[i] & 0xff);
            int b = (right[j] & 0xff);
            if (a != b) {
                return a - b;
            }
        }
        return left.length - right.length;
    }
share|improve this answer
This is basically what the non-optimized version of Guava's UnsignedBytes.lexicographicalComparator() does. – ColinD Feb 24 '11 at 18:25
Hmm, why did they use i and j, when one variable would've been sufficient. Also, storing int length = Math.min(left.length, right.length) and comparing i < length would improve this for large arrays – Lukas Eder Jan 9 at 14:05
you would expect that the length field of the array would be as expensive – marcorossi May 3 at 15:25

You can use a comparator which comares the Character.toLowerCase() of each of the bytes in the array (Assuming the byte[] is in ASCII) if not you will need to do the character decoding yourself or use new String(bytes, charSet).toLowerCase() but this is not likely to be efficient.

share|improve this answer

The simplest solution is to just loop

class LexicographicalByteComparator implements Comparator<byte[]> {
  public int compare(byte[] a, byte[] b) {
    int n = Math.min(a.length, b.length);
    for (int i = 0; i < n; ++i) {
      int delta = a[i] - b[i];  // OK since bytes are smaller than ints.
      if (delta != 0) { return; }
    }
    long delta = ((long) a.length()) - b.length();
    return delta < 0 ? -1 : delta != 0 ? 1 : 0;
  }
}

If you need something faster, you might look into wrapping the byte[]s via a java.nio.ByteBuffer.wrap and use the ability to get bytes four or eight at a time using getInt but you need to be careful to specify the right endianness via the order(ByteOrder) method.

share|improve this answer
i could wrap them in ByteBuffer, but in that case i wouldn't need to implement anything as ByteBuffer already has compareTo() method, right? The problem is then the cost of putting my actual map into the treemap with the key wrapping. – marcorossi Feb 24 '11 at 17:35
You are quite right, and its compareTo method docs say that it compares lexicographically. – Mike Samuel Feb 24 '11 at 23:54
Eek. I think most users will be surprised that it does it treating the bytes as signed (assuming that's what it does; I find ByteBuffer.compareTo() really horrendously underspecified. Do methods like flip() and whatnot affect what range of bytes get compared? I can't tell.) – Kevin Bourrillion Feb 25 '11 at 1:53
@Kevin, it says "compares lexicographically, without regard to the starting position of each sequence within its corresponding buffer" which notably doesn't mention the limit. Is the effect of the limit on comparison what concerns you? – Mike Samuel Feb 25 '11 at 4:26

I'm assuming the problem is just with the "byte vs. byte" comparison. Dealing with the arrays is straightforward, so I won't cover it. With respect to byte vs. byte, my first thought is to do this:

public class ByteComparator implements Comparator<byte> {
  public int compare(byte b1, byte b2) {
    return new Byte(b1).compareTo(b2);
  }
}

But that won't be lexicographic: 0xFF (the signed byte for -1) will be considered smaller than 0x00, when lexicographically it's bigger. I think this should do the trick:

public class ByteComparator implements Comparator<byte> {
  public int compare(byte b1, byte b2) {
    // convert to unsigned bytes (0 to 255) before comparing them.
    int i1 = b1 < 0 ? 256 + b1 : b1;
    int i2 = b2 < 0 ? 256 + b2 : b2;
    return i2 - i1;
  }
}

Probably there is something in Apache's commons-lang or commons-math libraries that does this, but I don't know it off hand.

share|improve this answer

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.