R
RC
I searched java.util.* package, all I found are
ascending sorted, such as SortedMap, SortedSet,
TreeMap, TreeSet.
I wouldn't found descending sorted.
Currently I made descending sorted by TreeMap then
push the keys into Stack, then pop
the keys back.
Anyone has better idea?
ascending sorted, such as SortedMap, SortedSet,
TreeMap, TreeSet.
I wouldn't found descending sorted.
Currently I made descending sorted by TreeMap then
push the keys into Stack, then pop
the keys back.
Anyone has better idea?