如何在Java中创建二维元组数组



我试图创建一个双元组数组。有人知道这是怎么做的吗?

我基本上希望有如下的东西:

int[] values = {5, 1, 7}; // This array length can vary with different values
int desiredGoal = 77;
int data[][] = new int[values.length][desiredGoal + 1];

2D数组的每个索引都包含一个元组。元组的长度将与values数组相同(无论它的长度是多少),并且将包含values数组中值的各种组合,以实现期望的目标值。

他可能不需要Vector的同步,所以他应该坚持ListArrayList。假设是Java 7,试试这个:

List<Integer> values = new ArrayList<>();
Collections.addAll(values, 5, 1, 7);
int desiredGoal = 77;
List<List<Integer>> data = new List<>(); 
// Create the inner lists:
for (final int ignored: values) {
    data.add(new ArrayList<>(desiredGoal + 1));
    // List<Integer> is wanted, so use type inference.
}

您可以使用java.util.Vector:

所以应该是这样的:

Vector<Integer> values = new Vector<Integer>(Arrays.asList([5,1,7]));
Vector<Vector<Integer>> data = new Vector<Vector<Integer>>(values.size()) 
//you'll also need to actually create the inner vector objects:
for (int i = 0; i<values.size(); i++){
   data.set(i,new Vector<Integer>(desiredGoal + 1);
}

相关内容

  • 没有找到相关文章

最新更新