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?
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.
UnsignedBytes
Unsafe
1.4m articles
1.4m replys
5 comments
57.0k users