Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Storing number pairs in java

Tags:

java

How do I store a set of paired numbers in java? Do I use lists or arrays or maybe something else?

eg. [ (1,1) , (2,1) , (3,5)]

like image 309
saviok Avatar asked Apr 19 '12 18:04

saviok


1 Answers

There are a few options:

Write a custom IntPair class

class IntPair {
  // Ideally, name the class after whatever you're actually using 
  // the int pairs *for.*
  final int x;
  final int y;
  IntPair(int x, int y) {this.x=x;this.y=y;}
  // depending on your use case, equals? hashCode?  More methods?
}

and then create an IntPair[] or a List<IntPair>.

Alternately, create a two-dimensional array new int[n][2], and treat the rows as pairs.

Java doesn't have a built-in Pair class for a few reasons, but the most noticeable is that it's easy enough to write a class that has the same function, but has much more enlightening, helpful names for the class, its fields, and its methods.

If we knew more about what you're actually using this for, we might be able to provide more detailed suggestions -- for all we know, a Map could be appropriate here.

like image 174
Louis Wasserman Avatar answered Oct 17 '22 07:10

Louis Wasserman