web-dev-qa-db-fra.com

C #: Division d'un tableau en n parties

J'ai une liste d'octets et je veux diviser cette liste en parties plus petites.

var array = new List<byte> {10, 20, 30, 40, 50, 60};

Cette liste a 6 cellules. Par exemple, je veux le scinder en 3 parties contenant chacune 2 octets.

J'ai essayé d'écrire quelques boucles for et ai utilisé des tableaux 2D pour atteindre mon but, mais je ne sais pas si c'est une approche correcte.

            byte[,] array2D = new byte[window, lst.Count / window];
            var current = 0;
            for (int i = 0; i < rows; i++)
            {
                for (int j = 0; j < cols; j++)
                {
                    array2D[i, j] = lst[current++];
                }
            }
22
Blast

Une méthode intéressante consisterait à créer une méthode générique/extension permettant de scinder un tableau. C'est à moi:

/// <summary>
/// Splits an array into several smaller arrays.
/// </summary>
/// <typeparam name="T">The type of the array.</typeparam>
/// <param name="array">The array to split.</param>
/// <param name="size">The size of the smaller arrays.</param>
/// <returns>An array containing smaller arrays.</returns>
public static IEnumerable<IEnumerable<T>> Split<T>(this T[] array, int size)
{
    for (var i = 0; i < (float)array.Length / size; i++)
    {
        yield return array.Skip(i * size).Take(size);
    }
}

De plus, cette solution est différée. Ensuite, appelez simplement split(size) sur votre tableau.

var array = new byte[] {10, 20, 30, 40, 50};
var splitArray = array.Split(2);

Comme demandé, voici une méthode générique/extension pour obtenir un tableau 2D carré à partir d'un tableau:

public static T[,] ToSquare2D<T>(this T[] array, int size)
{
    var buffer = new T[(int)Math.Ceiling((double)array.Length/size), size];
    for (var i = 0; i < (float)array.Length / size; i++)
    {
        for (var j = 0; j < size; j++)
        {
            buffer[i, j] = array[i + j];
        }
    }
    return buffer;
}

S'amuser :)

48
ZenLulz

en utilisant Linq

public List<List<byte>> SplitToSublists(List<byte> source)
{
    return source
             .Select((x, i) => new { Index = i, Value = x })
             .GroupBy(x => x.Index / 100)
             .Select(x => x.Select(v => v.Value).ToList())
             .ToList();
}

Il suffit de l'utiliser 

var sublists = SplitToSublists(lst);
10
Omri Btian

Ceci pour avoir une liste de listes

array.Select((s,i) => array.Skip(i * 2).Take(2)).Where(a => a.Any())

Ou ceci pour avoir la liste des articles

array.SelectMany((s,i) => array.Skip(i * 2).Take(2)).Where(a => a.Any())
1
misha130

Voici ma solution naif:

    public static string[] SplitArrey(string[] ArrInput, int n_column)
    {

        string[] OutPut = new string[n_column];
        int NItem = ArrInput.Length; // Numero elementi
        int ItemsForColum = NItem / n_column; // Elementi per arrey
        int _total = ItemsForColum * n_column; // Emelemti totali divisi
        int MissElement = NItem - _total; // Elementi mancanti

        int[] _Arr = new int[n_column];
        for (int i = 0; i < n_column; i++)
        {
            int AddOne = (i < MissElement) ? 1 : 0;
            _Arr[i] = ItemsForColum + AddOne;
        }

        int offset = 0;
        for (int Row = 0; Row < n_column; Row++)
        {
            for (int i = 0; i < _Arr[Row]; i++)
            {
                OutPut[Row] += ArrInput[i + offset] + " "; // <- Here to change how the strings are linked 
            }
            offset += _Arr[Row];
        }
        return OutPut;
    }
0
Francesco

Vous voudrez peut-être essayer ceci. 

var bytes = new List<byte>(10000);
int size = 100;
var lists = new List<List<byte>>(size);
for (int i = 0; i < bytes.Count; i += size)
{
        var list = new List<byte>();
        list.AddRange(bytes.GetRange(i, size));
        lists.Add(list);
}
0
Hossain Muctadir