所以我在下面的注释代码中做了一些不言自明的练习
using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static int[,] GetPairs ( int [] arr )
{
// given an array arr of unique integers, returns all the pairs
// e.g. GetPairs(new int [] { 1, 2, 3, 4, 5 }) would return
// { {1, 2}, {1, 3}, {1, 4}, {1, 5}, {2, 3}, {2, 4}, {2, 5}, {3, 4}, {3, 5}, {4, 5} }
int n = (arr.Length * (arr.Length - 1))/2; // number of pairs unique pairs in an array of unique ints
if ( n < 1 ) return new int[0,2] {}; // if array is empty or length 1
int[,] pairs = new int[n,2]; // array to store unique pairs
// populate the pairs array:
for ( int i = 0, j = 0; i < arr.Length; ++i )
{
for ( int k = i + 1; k < arr.Length; ++k )
{
pairs[j,0] = arr[i];
pairs[j,1] = arr[k];
++j;
}
}
return pairs;
}
public static void Main()
{
int [] OneThroughFour = new int [4] { 1, 2, 3, 4 };
int [,] Pairs = GetPairs(OneThroughFour);
for ( int i = 0; i < Pairs.Length; ++i )
{
Console.WriteLine("{0},{1}",Pairs[i,0],Pairs[i,1]);
}
}
}
我得到的错误是
循环中的[System.IndexOutOfRangeException:索引超出了界限 阵列。]
for ( int i = 0; i < Pairs.Length; ++i )
{
Console.WriteLine("{0},{1}",Pairs[i,0],Pairs[i,1]);
}
这对我没有任何意义。什么是超出界限?肯定不是i
,因为它在0
,1
,...,Pairs.Length - 1
范围内。肯定不是0
或1
,因为这些是有效的索引。
此外,是否可以比O(n^2)
更好地完成此操作,并且.NET是否有更紧凑和高效的方法?
答案 0 :(得分:4)
对于二维数组,Length
属性返回第一个维度的长度乘以第二个维度的长度。在您的情况下,这等于2 * n
据我所知,你想要的是循环第一维。
使用GetUpperBound
方法,如下所示:
for (int i = Pairs.GetLowerBound(0); i <= Pairs.GetUpperBound(0); ++i)
{
//...
}