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 を使用する