Is there an ordered Map? with better performance than TreeMap

during the interview, the interviewer told me that the performance of TreeMap was not good. Could you switch to another one?
at that time, I thought he was fooling me, but now I still haven"t found an orderly map with better performance!


this question feels a little strange. Ordering and map's put and get are two different operations. I don't quite understand whether the performance is put, get or something else. The characteristic of
TreeMap is that the Key is ordered (the order depends on the comparator of the key), the key is also ordered for put and get whose complexity is log (n)
LinkedHashMap (the order depends on the insertion order), and the complexity is 1

for put and get.
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b34fb0-2bf64.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b34fb0-2bf64.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?