c# 将数组分份
【代码】c# 将数组分份。
·
// 将数组分成指定数量的部分
private static List<double[]> SplitArrayIntoParts(double[] array, int numParts)
{
List<double[]> result = new List<double[]>();
int totalLength = array.Length;
int partSize = totalLength / numParts; // 每一部分的基础大小
int remainder = totalLength % numParts; // 计算是否有剩余部分
int startIndex = 0;
for (int i = 0; i < numParts; i++)
{
// 如果有剩余,每部分分配一个额外的元素,直到分完
int currentPartSize = partSize + (remainder > 0 ? 1 : 0);
remainder--;
// 创建子数组
double[] part = new double[currentPartSize];
Array.Copy(array, startIndex, part, 0, currentPartSize);
result.Add(part);
// 更新下一个子数组的起始索引
startIndex += currentPartSize;
}
return result;
}
// 将数组分成 100 份,platenRadius是原始数组
List<double[]> platenRadiusList = SplitArrayIntoParts(platenRadius, 100);
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐


所有评论(0)