vote up 1 vote down star

I want a data structure that allows me to map keys to values, like PHP's associative arrays. Each key can only exist once, but a value can be mapped to any number of keys. What am I looking for? Something in the Google Commons Collections?

flag

68% accept rate

4 Answers

vote up 5 vote down check

The Map structure is what you want. A good implementation is the HashMap.

This data type does not allow the same value for the Key, but you can have as many duplicate values as you like.

Example usage:

Map<String, String> map = new HashMap<String, String>();
map.put("FirstName", "LastName");

System.out.println(map.get("FirstName")); // Prints 'LastName'
System.out.println(map.put("FirstName", "Foo")); // Prints 'LastName'
System.out.println(map.get("FirstName")); // Prints 'Foo'

In other words, the key can only exist once. Otherwise the value is overwritten.

link|flag
I think he wants multiple keys to point to the same object though I may be wrong – DroidIn.net Oct 8 at 3:19
2  
No, Map<K,V> is what he wants. A key can exist only once, but a value can be mapped to any number of keys. So in the case of ( "Foo" => foo, "Bar" => bar, "Baz" = foo), the keys "Foo" and "Baz" are unique, but they map to the same value, foo. – William Brendel Oct 8 at 3:29
Aaa - isn't that the same thing? Multiple keys - same value, that's what you get with HashMap if you stick the same reference multiple times. – DroidIn.net Oct 8 at 4:27
HashMaps are awesome. – steven Oct 8 at 5:13
vote up 0 vote down

HashMap is the way to go for sure. I actually view things the other way around when I first started coding in PHP. I was wondering, how do I implement a HashMap? Then I discovered associative arrays.

link|flag
vote up 0 vote down

What's wrong with regular HashMap? If your values are Strings you'll get reference counting for free and if you need to refer to a particular instance of object just don't allocate one, but use existing reference

link|flag
Reference counting? Can you further explain that point or how it affects in a managed language? – dribeas Oct 8 at 6:02
-1: the sentence about reference counts is totally incorrect. No decent JVM will use reference counting for memory management of Strings or any other "normal" data structures. – Stephen C Oct 8 at 6:50
`String a = "A"; String b = "A"; if (a == b && a.equals(b)) System.out.println(1); else System.out.println(0); 1 ` So - I suppose the actual mechanism that compiler deploys is not brute force RC but it's not what I implied, all I am saying is that in HashMap your multiple String keys will be mapped to the same instance of String value and you don't have to do anything special about that since in Java Strings are treated in the special way – DroidIn.net Oct 8 at 16:28
vote up 2 vote down

You're looking for a HashMap, such as a HashMap<K,V>. The former maps Objects to Objects, and the latter maps types of your choosing (like other generics).

link|flag
PHP arrays maintain insertion order. HashMap does not. – cletus Oct 8 at 3:17
1  
Good point, but he only asked for the associative property, so I assume he's not concerned about that quirk. – Andrew Coleson Oct 8 at 3:18
3  
@cletus: Then there's LinkedHashMap. :-P – Chris Jester-Young Oct 8 at 3:23
1  
And if you want keys to be sorted the you can use TreeMap – DroidIn.net Oct 8 at 4:35

Your Answer

Get an OpenID
or

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