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.
我正在构建一个特里树,每个节点都有一个存储儿子值的哈希图,键是他们的名字。
我使用 hashmap 主要是因为我需要性能而不是排序,当然我会使用树形图。
现在,我需要在一个函数中按键值(即字符串)对哈希映射值进行排序。现在我使用迭代器来迭代值。
有什么建议吗?
谢谢
您应该将 map.keySet 放在一个列表中对其进行排序并在此排序键列表上进行迭代。