vote up 1 vote down star

Can I swap the keys of two values of a Hashmap, or do I need to do something clever?

Something that would look something like this:

	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;
	}
flag

67% accept rate
Are you trying to sort a bunch of items using a key? Just use a TreeMap instead and either provide a Comparator or override equals and compareTo. – aberrant80 Sep 17 at 1:28
This probably needs a little more explanation. What are the integer keys? Do they enforce some kind of order? If so and if you're sorting based on the String value, why not just use a List instead? Or does the key have some other meaning? – cletus Sep 17 at 1:30

2 Answers

vote up 3 vote down check

Well, if you're just after a Map where the keys are ordered, use a SortedMap instead.

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

You can rely on the natural ordering of the key (as in, its Comparable interface) or you can do custom ordering by passing a Comparator.

Alternatively you can call setValue() on the 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;
}

Personally I'd just go with a SortedMap.

link|flag
I'm trying to sort the String values according to a specific algorithm. – Rosarch Sep 17 at 1:28
1  
Then write a comparable interface and pass it to the constructor for the map. See java.sun.com/javase/6/… and java.sun.com/javase/6/… – Jherico Sep 17 at 4:40
Actually, if you're trying to sort the string values then what you want is a Map<String, Integer>. – Jherico Sep 17 at 4:42
vote up 0 vote down

There's nothing like that in the Map or Entry interfaces but it's quite simple to implement:

    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()));
    }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.