在处理锯齿状数组 [][] 时,我遇到了一个巨大的问题。
我编写了一个与大量 CSV 文件交互的程序。它会读取它们然后比较它们。现在我有一个问题,如果数组 A 具有 10 行和 10 列的维度,但数组 B 只有 5 行和 5 列的维度。我在数组 B 上得到“超出范围”。这只是一个例子,如果我有一个数组,每列中的行数不同,它会变得更糟......
我尝试检查“null”,但这不起作用,因为一旦它尝试访问该字段,我就会得到“超出范围”......
现在我有两个理论来解决这个问题:
A.)检查数组 B 中的“超出范围”,如果是,则在同一字段中填充数组 A,并使用“0”
B.)检查数组 A 和数组 B 是否具有相同的维度,如果不是,则用“0”填充数量较少的数组,使其具有相同的数量
在这两种解决方案上,我完全不知道如何在 C# 中做到这一点......我总是超出范围......
我目前对 1 个数组所做的是:
for (int b = CSV_Statistiken.Length - 1; b >= 0; b--)
{
for (int a = 0; a < CSV_Statistiken[b].Length; a++)
{
CSV_Statistiken[b][a] = 1;
}
}
所以我得到了数组的维度并遍历它,将每个值设置为 1。但是我该如何处理我的 2 个数组的问题呢?
我研究了一下,但找不到任何解决方案=/
提前致谢
编辑:我正在尝试做的事情:
for (int i = 0; i < number; i++) //runs through every File existing
{
NextFile = fold.Filepath + "\\" + files[i].ToString();
file = new FileInfo(@NextFile);
max_Rows = 0;
max_Col = 0;
CSV_temp = ReadCSV(file, ref max_Rows, ref max_Col); // reads the next file to an arraay [][] and saves the size of this array in max_col/ max_rows
MAX_Col_Total = GetHighestValues(ref MAX_Col_Total, max_Col);
MAX_Rows_Total = GetHighestValues(ref MAX_Rows_Total, max_Rows);
for (int j = 0; j < MAX_Col_Total; j++) //runs thrugh the max amount of cols found
{
for (int k = MAX_Rows_Total - 1; k >= 0; k--) //runs through the max mount of rows found
{
if (CSV_temp.GetLength(0) >= j && CSV_temp.GetLength(1) >= k)//Checks if Field exists -> does NOT work!
{
if (CSV_temp[k][j] > (Threshhold))) //
{
do something
}
}
else
{
// Field doesnt exists -> do something else
}
}
}
}