0

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

我基本上希望有以下内容:

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

int data[][] = new int[values.length][desiredGoal + 1];

二维数组的每个索引都包含一个元组。元组将与 values 数组的长度相同(无论它的长度是多少),并且将包含 values 数组中值的各种组合,以实现所需的Goal 值。

4

2 回答 2

0

他可能不需要 的同步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.
}
于 2013-04-02T04:01:40.503 回答
0

您可以使用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);
}
于 2013-04-02T03:53:16.747 回答