0

我可以做到这一点,但我想要一种干净的方式来做这件事,不会给以后处理带来任何麻烦。

private String[][] SplitInto10(string[] currTermPairs)
{
   //what do i put in here to return 10 string arrays
   //they are all elements of currTermPairs, just split into 10 arrays.
}

所以我基本上想将一个字符串数组(currTermPairs)平均分成 10 个或 11 个不同的字符串数组。我需要确保没有数据丢失并且所有元素都已成功传输

编辑:给你一个 n 大小的字符串数组。需要发生的是该方法需要从给定的字符串数组中返回 10 个字符串数组/列表。换句话说,将数组分成 10 个部分。

例如,如果我有

 A B C D E F G H I J K L M N O P Q R S T U

我需要根据大小将它拆分为 10 个字符串数组或 11 个字符串数组,所以在这种情况下我会有

A B
C D
E F
G H 
I J
K L
M N 
O P 
Q R 
S T 
U   <--Notice this is the 11th array and it is the remainder
4

6 回答 6

5

改用余数%运算符,这里是 Linq 方法:

string[][] allArrays = currTermPairs
            .Select((str, index) => new { str, index })
            .GroupBy(x => x.index % 10)
            .Select(g => g.Select(x => x.str).ToArray())
            .ToArray();

演示(每个数组有 2 个字符串)

于 2013-01-10T15:26:55.053 回答
2

这是一个不使用 LINQ 的解决方案,以防您想习惯数组和 for 循环:

// Determine the number of partitions.
int parts = currTermPairs.Length < 10 ? currTermPairs.Length : 10;

// Create the result array and determine the average length of the partitions.
var result = new string[parts][];
double avgLength = (double)currTermPairs.Length / parts;

double processedLength = 0.0;
int currentStart = 0;
for (int i = 0; i < parts; i++) {
    processedLength += avgLength;
    int currentEnd = (int)Math.Round(processedLength);
    int partLength = currentEnd - currentStart;
    result[i] = new string[partLength];
    Array.Copy(currTermPairs, currentStart, result[i], 0, partLength);
    currentStart = currentEnd;
}
return result;

项目的总数可能不能被 10 整除。问题是如何分配不同长度的部分。在这里,我尝试将它们均匀分布。注意铸造(double)currTermPairs.Length。为了获得浮点除法而不是整数除法,这是必要的。

这里有一个小测试方法:

const int N = 35;
var arr = new string[N];
for (int i = 0; i < N; i++) {
    arr[i] = i.ToString("00");
}

var result = new PatrtitioningArray().SplitInto10(arr);
for (int i = 0; i < result.Length; i++) {
    Console.Write("{0}:   ", i);
    for (int k = 0; k < result[i].Length; k++) {
        Console.Write("{0}, ", result[i][k]);
    }
    Console.WriteLine();
}

它的输出是(有 35 个元素):

0:   00, 01, 02, 03, 
1:   04, 05, 06, 
2:   07, 08, 09, 
3:   10, 11, 12, 13, 
4:   14, 15, 16, 17, 
5:   18, 19, 20, 
6:   21, 22, 23, 
7:   24, 25, 26, 27, 
8:   28, 29, 30, 31, 
9:   32, 33, 34, 
于 2013-01-10T16:05:49.047 回答
0

我会说创建一个List<List<string>>包含 10 或 11 (无论您实际想要List<string>的数字),并执行以下操作:

int i = 0;
int index;
foreach(string s in src)
{
  index = i % lists.Length; //lists is the List<List<string>>
  lists[index].Add(s);
  i++;
}

当然,如果原始列表中至少有 10 或 11 个项目,则只能拆分为 10 或 11 个列表。

于 2013-01-10T15:26:46.827 回答
0

下面的帖子显示了拆分数组的一个很好的示例:

C# 拆分数组

它包含自定义拆分和中点拆分。

于 2013-01-10T15:27:38.160 回答
0

这适用于按顺序将它们分组(即 {1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10}, {11, 12}, { 13、14}、{15、16}、{17、18}、{19、20}、{21}):

    int groupSize = items.Length / 10;
    string[][] sets = items.Select((str, idx) => new { index = idx, value = str })
                           .GroupBy(a => a.index / groupSize)
                           .Select(gr => gr.Select(n => n.value).ToArray())
                           .ToArray();

如果您有 102 个项目,这将为您提供 10 个包含 10 个项目的数组和一个包含 2 个项目的数组(其余部分)。这是你所期待的吗?

于 2013-01-10T15:43:15.233 回答
0

使用MoreLinqBatch扩展方法:

private String[][] SplitIntoParts(string[] items, int equalPartsCount)
{
   var batches = items.Batch(items.Count() / equalPartsCount);
   return batches.Select(x => x.ToArray()).ToArray();
}
于 2013-01-10T16:08:12.653 回答