I found a Java question J couldn't understand what should be answer
The TreeMap
and LinkedHashMap
classes:
In Java:
TreeMap
is a Map
that automatically sorts the Map
entries according to its natural ordering using Comparable<T>
interfaceLinkedHashMap
is Map that guarantees that the entries will be returned in the same order as they were added