My Hashtable in Java would benefit from a value having a tuple structure. What data structure can I use in Java to do that?
Hashtable<Long, Tuple<Set<Long>,Set<Long>>> table = ...
|
I don't think there is a general purpose tuple class in Java but a custom one might be as easy as the following:
Of course, there are some important implications of how to design this class further regarding equality, immutability, etc., especially if you plan to use instances as keys for hashing. |
|||||||||||||||||||
|
|
javatuples is a dedicated project for tuples in Java.
|
|||||||
|
|
Here's this exact same question elsewhere, that includes a more robust That discussion goes on to mirror the maerics vs ColinD approaches of "should I re-use a class Tuple with an unspecific name, or make a new class with specific names each time I encounter this situation". Years ago I was in the latter camp; I've evolved into supporting the former. |
|||
|
|
|
If you are looking for a built-in Java two element tuple try AbstractMap.SimpleEntry. |
|||
|
|
|
Create a class that describes the concept you're actually modeling and use that. It can just store two |
|||
|
|
|
As an extension to @maerics nice answer, I've added a few useful methods:
|
|||
|
|
|
Apache Commons provided some common java utilities including a |
|||
|
|
To supplement @maerics's answer, here is the
|
|||
|
|
Hashtable. It has long been superseded byjava.util.HashMap. – Alexander Pogrebnyak Apr 19 '10 at 21:55