如何从c#中的4x4数组中获得所有可能的对

本文关键字:有可能 数组 中的 4x4 | 更新日期: 2023-09-27 18:04:12

假设我有一个2x2数组

[1, 2]
[3, 4]

我想要得到所有可能的对

[1, 2] [1, 3] [1, 4] [2, 3] [2, 4] [3, 4]

我不想要像[2, 1]那样的反向对。

谁有解决这个问题的好办法?

如何从c#中的4x4数组中获得所有可能的对

您实际上需要三个嵌套循环,或者将2d列表转换为1d列表,然后获得排列:

List<List<int>> My2DList = new List<List<int>>() { new List<int>(){ 1, 2 }, new List<int>(){ 3, 4 } }; // your initial 2d list
List<int> My1DList = My2DList.Cast<int>().ToList(); // convert to 1d list
List<List<int>> Permutations = new List<List<int>>(); // prepare a container
for (int i = 0; i < My1DList.Count; i++)
    for(int j = i; j < My1DList.Count; j++)
        Permutations.Add(new List<int>() { My1DList[i], My1DList[j] }); // add your permutations