1

Hashmap の 2 つの値のキーを入れ替えることはできますか?

次のようになります。

    Map.Entry<Integer, String> prev = null;
    for (Map.Entry<Integer, String> entry: collection.entrySet()) {
        if (prev != null) {
            if (entry.isBefore(prev)) {
                entry.swapWith(prev)
            }
        }
        prev = entry;
    }
4

2 に答える 2

3

キーが順序付けられている Map の直後にいる場合は、SortedMap代わりに a を使用してください。

SortedMap<Integer, String> map = new TreeMap<Integer, String>();

Comparableキーの自然な順序付け (インターフェイスなど)に依存するか、 Comparator.

setValue()または、 で呼び出すこともできますEntry

Map.Entry<Integer, String> prev = null;
for (Map.Entry<Integer, String> entry: collection.entrySet()) {
  if (prev != null) {
    if (entry.isBefore(prev)) {
      String current = entry.getValue();
      entry.setValue(prev.getValue();
      prev.setValue(current);
    }
  }
  prev = entry;
}

個人的には、SortedMap.

于 2009-09-17T01:24:05.097 に答える
1

Mapまたはインターフェイスにはそのようなものはありませんが、Entry実装は非常に簡単です。

    Map.Entry<Integer, String> prev = null;
    for (Map.Entry<Integer, String> entry: collection.entrySet()) {
            if (prev != null) {
                    if (entry.isBefore(prev)) {
                            swapValues(e, prev);
                    }
            }
            prev = entry;
    }

    private static <V> void swapValues(Map.Entry<?, V> first, Map.Entry<?, V> second)
    {
            first.setValue(second.setValue(first.getValue()));
    }
于 2009-09-17T09:58:43.603 に答える