Is it possible to have multiple values for the same key in a hash table? If not, can you suggest any such class or interface which could be used?
|
|
No. That's kind of the idea of hash tables. However, you could either roll your own with a Example:
Note that |
|||||
|
|
Values of a hash table is Object so you can store a List |
|||
|
Rather than give yet another multipmap answer, I'll ask why you want to do this? Are the multiple values related? If yes, then it's probably better that you create a data structure to hold them. If no, then perhaps it's more appropriate to use separate maps. Are you keeping them together so that you can iterate them based on the key? You might want to look for an alternative indexing data structure, like a SkipList. |
|||||||
|
|
As others pointed out, no. Instead, consider using a The Google Collections library contains one implementation, and is probably your best bet. Edit: of course you can do as Eric suggests, and store a Collection as a value in your Hashtable (or Map, more generally), but that means writing unnecessary boilerplate code yourself. When using a library like Google Collections, it would take care of the low-level "plumbing" for you. Check out this nice example of how your code would be simplified by using Multimap instead of vanilla Java Collections classes. |
||||
|
|
|
In a hashtable, one would use a key/value pair to store information. In Java, the
In an attempt to include multiple values (
The key/value pair of What is really needed here is a multimap, which allows an association of multiple values to a single key. One implementation of the multimap is
This is similar to the example above which used
As can be seen, for the |
|||
|
|
None of the answers indicated what I would do first off. The biggest jump I ever made in my OO abilities was when I decided to ALWAYS make another class when it seemed like it might be even slightly useful--and this is one of the things I've learned from following that pattern. Nearly all the time, I find there is a relationship between the objects I'm trying to place into a hash table. More often than not, there is room for a class--even a method or two. In fact, I often find that I don't even want a HashMap type structure--a simple HashSet does fine. The item you are storing as the primary key can become the identity of a new object--so you might create equals and hash methods that reference only that one object (eclipse can make your equals and hash methods for you easily). that way the new object will save, sort & retrieve exactly as your original one did, then use properties to store the rest of the items. Most of the time when I do that, I find there are a few methods that go there as well and before I know it I have a full-fledged object that should have been there all along but I never recognized, and a bunch of garbage factors out of my code. In order to make it more of a "Baby step", I often create the new class contained in my original class--sometimes I even contain the class within a method if it makes sense to scope it that way--then I move it around as it becomes more clear that it should be a first-class class. |
|||
|
|
|
See the Google Collections Library for multimaps and similar such collections. The built-in collections don't have direct support for this. |
|||
|
|
|
What you're looking for is a Multimap. The google collections api provides a nice implementation of this and much else that's worth learning to use. Highly recommended! |
|||||||
|
|
You need to use something called a MultiMap. This is not strictly a Map however, it's a different API. It's roughly the same as a Map<K, List<V>>, but you wont have methods like entrySet() or values(). |
|||||||||
|
|
Just make your own:
To add:
|
|||
|
|
Simple. Instead of
|
|||||||||||
|
|
Apart from the Google Collections there is a apache Commons Collection object for MultiMap |
|||
|
|
|
Following code without Google's Guava library. It is used for double value as key and sorted order
|
|||
|
|