Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的数据采用键值的形式。我想对值进行排序。我已将它们存储在哈希图中。
map.put(1,.8678) map.put(2,.9578) map.put(6,.0453)
我想要输出:
(6,.0453), (1,.8678), (2,.9578)
我想对值进行排序,高效地检索排序值及其键(复杂性最低)。解决我的问题的最佳数据结构是什么?谢谢。
使用 TreeMap 而不是 hashmap