Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 = ...
share|improve this question
You mean a pair, i.e. a tuple of length 2? In any case, I guess your best bet is to write a class of your own, shouldn't be too hard. – doublep Apr 19 '10 at 21:29
15  
Let's start with NOT using Hashtable. It has long been superseded by java.util.HashMap. – Alexander Pogrebnyak Apr 19 '10 at 21:55
1  
I'd say wrapping with Collections.synchronizedMap(Map) would be preferable. – ColinD Apr 19 '10 at 22:08
9  
If concurrent access is needed, then ConcurrentHashMap is the right class to use. It's more expressive and has better performance than a synchronized HashMap or Hashtable. – Esko Luontola Apr 19 '10 at 23:28
1  
Maybe I've just seen too many Hashtables used when a HashMap should have been used... Collections.synchronizedMap at least signals that your intent is to synchronize. Though yeah, ConcurrentHashMap is even better. – ColinD Apr 20 '10 at 0:18
show 2 more comments

8 Answers

up vote 48 down vote accepted

I don't think there is a general purpose tuple class in Java but a custom one might be as easy as the following:

public class Tuple<X, Y> { 
  public final X x; 
  public final Y y; 
  public Tuple(X x, Y y) { 
    this.x = x; 
    this.y = y; 
  } 
} 

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.

share|improve this answer
16  
I think it would be better to declare x and y as public final and get rid of those getters. – Hai Minh Nguyen Nov 10 '10 at 3:35
4  
@maerics Your class should be called Pair not Tuple as a tuple can contain more than two items. To anyone else coming across this question, a better Tuple implementaion can be found on stackoverflow here [stackoverflow.com/questions/3642452/java-n-tuple-implementation/…. – aem999 Apr 30 '12 at 7:59
9  
That is not a tuple. It only hold pairs (tuples of length 2). – Anoyz Jun 19 '12 at 10:59
3  
I'd rename "x" to "left" or "first", and "y" to "right" or "last". – Xan Jul 19 '12 at 9:47
I've used tuples a lot in C# and the documentation is really good if you would want to write a bigger one for your own: msdn.microsoft.com/de-de/library/vstudio/dd387036.aspx – Kjellski Oct 16 '12 at 12:18

javatuples is a dedicated project for tuples in Java.

Unit<A> (1 element)
Pair<A,B> (2 elements)
Triplet<A,B,C> (3 elements)
share|improve this answer
4  
This looks excellent. It is a bit of a shame that Java doesn't come with these classes out of the box – Herr Grumps Oct 18 '12 at 1:01
Glad that someone has done this. – Cory Kendall Mar 5 at 22:50

Here's this exact same question elsewhere, that includes a more robust equals, hash that maerics alludes to:

http://groups.google.com/group/comp.lang.java.help/browse_thread/thread/f8b63fc645c1b487/1d94be050cfc249b

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.

share|improve this answer

If you are looking for a built-in Java two element tuple try AbstractMap.SimpleEntry.

share|improve this answer

Create a class that describes the concept you're actually modeling and use that. It can just store two Set<Long> and provide accessors for them, but it should be named to indicate what exactly each of those sets is and why they're grouped together.

share|improve this answer

As an extension to @maerics nice answer, I've added a few useful methods:

public class Tuple<X, Y> { 
    public final X x; 
    public final Y y; 
    public Tuple(X x, Y y) { 
        this.x = x; 
        this.y = y; 
    }

    @Override
    public String toString() {
        return "(" + x + "," + y + ")";
    }

    @Override
    public boolean equals(Object other) {
        if (other == null) {
            return false;
        }
        if (other == this) {
            return true;
        }
        if (!(other instanceof Tuple)){
            return false;
        }
        Tuple<X,Y> other_ = (Tuple<X,Y>) other;
        return other_.x == this.x && other_.y == this.y;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((x == null) ? 0 : x.hashCode());
        result = prime * result + ((y == null) ? 0 : y.hashCode());
        return result;
    }
}
share|improve this answer

Apache Commons provided some common java utilities including a Pair (link). It implements Map.Entry, Comparable and Serializable.

share|improve this answer
The implementation provided by Apache Commons fulfills exactly what I needed. I am happy to have a working implementation. – Oliver F. Apr 30 at 18:27

To supplement @maerics's answer, here is the Comparable tuple:

import java.util.*;

/**
 * A tuple of two classes that implement Comparable
 */
public class ComparableTuple<X extends Comparable<? super X>, Y extends Comparable<? super Y>>
       extends Tuple<X, Y>
       implements Comparable<ComparableTuple<X, Y>>
{
  public ComparableTuple(X x, Y y) {
    super(x, y);
  }

  /**
   * Implements lexicographic order
   */
  public int compareTo(ComparableTuple<X, Y> other) {
    int d = this.x.compareTo(other.x);
    if (d == 0)
      return this.y.compareTo(other.y);
    return d;
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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