创建行和列以列出数组

Creating Rows and Columns to List Array

我有一个包含 30 行和 5 列的 csv 文件。我使用流 reader 将其读入我的应用程序,然后将其放入一个数组,排序,现在写到文件中。我有 5 列显示 "Score" 后跟下面的破折号。我的问题是我需要在排序后将数组输出为 5 列。我有一个遍历数组长度的 for 循环。我确实需要它来迭代 30 行和 5 列,但我不确定该怎么做。抱歉,我是 C# 和 linq 等功能的新手。这是我的输出和 for 循环的简短版本。如果需要进一步说明,请告诉我。

int n;

  fileOut.WriteLine();
  fileOut.WriteLine("Score    Score    Score    Score    Score");
  fileOut.WriteLine("-----    -----    -----    -----    -----");
  for (n = 1; n <= numOfScores; n++)
  fileOut.WriteLine("{0,4:f}", scoreArray[n]);
  fileOut.WriteLine();

我知道必须有一个简单的方法来做到这一点,只是不确定。

当前输出如下:

Score    Score    Score    Score    Score
-----    -----    -----    -----    -----
97.05
96.52
93.16
92.44
91.05
90.66
90.59
//etc, etc, through entire array, only one line when it needs to be in each column.

谢谢, 乔

不要使用 Console.WriteLine,只需使用 Console.Write。每次调用 WriteLine 时,都会在输入后打印一个换行符。

  fileOut.WriteLine();
  fileOut.WriteLine("Score    Score    Score    Score    Score");
  fileOut.WriteLine("-----    -----    -----    -----    -----");
  for (n = 1; n <= numOfScores; n++)
  fileOut.Write("{0,4:f}", scoreArray[n]);
  fileOut.WriteLine(); //do this so there is a new line after all the data

你的数组索引以 1 开头有点奇怪。它应该以 0 开头(除非你在第一个索引上跳过某些内容?)。

这可能就是您要找的。确保您的索引没有超出范围(您的数组可以被 5 整除)。

  fileOut.WriteLine();
  fileOut.WriteLine("Score    Score    Score    Score    Score");
  fileOut.WriteLine("-----    -----    -----    -----    -----");
  for (int n = 0; n < numOfScores; n+=5) // why do you need to declare n outside?
  {
            fileOut.WriteLine("{0,4:f} {1,4:f} {2,4:f} {3,4:f} {4,4:f}{5}", scoreArray[n],scoreArray[n+1],scoreArray[n+2],scoreArray[n+3],scoreArray[n+4],Environment.NewLine);
  }

要正确执行此操作,我首先需要处理您的数据。你有一个排序的分数数组。您希望它输出到列,其中数据在填充之前填充 down,通过强烈偏向写入 across[= 的输出流(控制台) 25=] 在它写下来之前。

这意味着为了避免输出流中的回溯(缓慢而棘手),我们需要在将数据写入控制台之前对内存中的数据进行处理:

double[] scores = ...; //sorted data in here

// now some constants
const int cols = 5;
const int colWidth = 5;
const int colSpace = 4;
const string Header = "Score";

//figure out how many rows we need
int remainder = scores.Length % cols;
int rows = scores.Length / cols + (remainder > 0?1:0);

//organize the data into a 2d structure that matches the output
// I chose an array of arrays rather than 2d array so I can pass individual
//   arrays to format function later on.
var data = new string[rows][];
int i = 0; //score index
for (int c = 0;c < cols;c++)
{
    for (int r = 0;r < rows && i < scores.Length; r++)
    {
        //make sure nested array exists and is pre-populated with empty strings (string.Format() will choke later if we leave these as nulls)
        data[r] = data[r] ?? Enumerable.Repeat("", cols).ToArray();

        //skip this cell if it's at the bottom row of a later column in an unbalanced array
        if (remainder > 0 && r == rows - 1 && c >= remainder) continue;

        data[r][c] = scores[i].ToString();
        i++;
    }
}

//write the header
var format = string.Join("", Enumerable.Repeat("{0,-" + (colWidth + colSpace) + "}", cols));
Console.WriteLine(format, Header);
Console.WriteLine(format, new string('-', colWidth));

//write the data
format = string.Join("", Enumerable.Range(0,cols).Select(i => string.Format("{{{0},-{1}}}{2}", i, colWidth, new string(' ',colSpace))).ToArray());
for (int i = 0; i < rows; i++)
    Console.WriteLine(format, data[i]);

运行 带有示例数据的代码:

double[] scores = { 97.05,96.52,93.16,92.44,91.05,90.66,90.59,19.1, 18.4, 16.8, 11.1, 13.8, 12.2, 7.9, 8.1, 11.0, 14.5, 16.6, 21.3, 16, 17.9};
scores = scores.OrderBy(s => s*-1).ToArray();

我得到这个结果:

Score    Score    Score    Score    Score    
-----    -----    -----    -----    -----    
97.05    90.66    18.4     16       11.1     
96.52    90.59    17.9     14.5     11       
93.16    21.3     16.8     13.8     8.1      
92.44    19.1     16.6     12.2     7.9      
91.05                                                   

这里很酷的是,这段代码可以让您轻松调整所需的列数。