up vote 23 down vote favorite
11
share [g+] share [fb]

Is there a nice way to split a collection into 'n' parts with LINQ ? Not necessarily even of course

link|improve this question

64% accept rate
Retagged: The question has nothing to do with asp.net. Please tag your questions appropriately. – Andreas Huber Jan 13 '09 at 7:37
How exactly do you want them split, if not even (allowing for the end, of course)? – Marc Gravell Jan 13 '09 at 7:53
who linked to this question? john was it you? :-) suddenly all these answers :-) – Simon_Weaver Mar 17 '09 at 21:19
feedback

14 Answers

up vote 26 down vote accepted

A pure linq and the simplest solution is as under.

static class LinqExtensions
{
    public static IEnumerable<IEnumerable<T>> Split<T>(this IEnumerable<T> list, int parts)
    {
        int i = 0;
        var splits = from item in list
                     group item by i++ % parts into part
                     select part.AsEnumerable();
        return splits;
    }
}
link|improve this answer
1  
You can do: select part.AsEnumerable() instead of select (IEnumerable<T>)part. It feels more elegant. – tuinstoel Feb 11 '09 at 10:30
Thanks for the suggestion tuinstoel. It sure looks better now. – Hasan Khan Feb 12 '09 at 4:36
Doing all those modulus operations can get a bit expensive on long lists. – Jonathan Allen Mar 17 '09 at 18:11
6  
It would be better to use the Select overload that includes the index. – Marc Gravell Aug 17 '09 at 21:21
I've added a response that uses the select overload and method chaining syntax – manu08 Mar 14 '11 at 20:21
show 2 more comments
feedback

EDIT: Okay, it looks like I misread the question. I read it as "pieces of length n" rather than "n pieces". Doh! Considering deleting answer...

(Original answer)

I don't believe there's a built-in way of partitioning, although I intend to write one in my set of additions to LINQ to Objects. Marc Gravell has an implementation here although I would probably modify it to return a read-only view:

public static IEnumerable<IEnumerable<T>> Partition<T>
    (this IEnumerable<T> source, int size)
{
    T[] array = null;
    int count = 0;
    foreach (T item in source)
    {
        if (array == null)
        {
            array = new T[size];
        }
        array[count] = item;
        count++;
        if (count == size)
        {
            yield return new ReadOnlyCollection<T>(array);
            array = null;
            count = 0;
        }
    }
    if (array != null)
    {             
        Array.Resize(ref array, count);
        yield return new ReadOnlyCollection<T>(array);
    }
}
link|improve this answer
Darn - beat me to it ;-p – Marc Gravell Jan 13 '09 at 7:52
You really don't like those "array[count++]", eh ;-p – Marc Gravell Jan 13 '09 at 7:54
Ironically I might well have used it before yesterday. But having written that answer it would have been hypocritical - and looking at both versions I think this is slightly easier to read at a glance. At first I used a list instead - Add is even more readable :) – Jon Skeet Jan 13 '09 at 8:03
Well, I just added a slightly different answer (to address "n pieces" rather than "pieces of length n"), and mixed in parts of your version ;-p – Marc Gravell Jan 13 '09 at 8:09
of course this time around I needed pieces of 8 rather than 8 pieces :-) and this worked great – Simon_Weaver Oct 21 '11 at 8:37
feedback

Ok, I'll throw my hat in the ring. The advantages of my algorithm:

  1. No expensive division or modulus operators
  2. All operations are O(1)
  3. Works for IEnumerable<> source (no Count property needed)
  4. Simple

The code:

public static IEnumerable<IEnumerable<T>>
  Section<T>(this IEnumerable<T> source, int length)
{
  if (length <= 0)
    throw new ArgumentOutOfRangeException("length");

  var section = new LinkedList<T>();

  foreach (var item in source)
  {
    section.AddLast(item);

    if (section.Count == length)
    {
      yield return section.AsReadOnly();
      section = new LinkedList<T>();
    }
  }

  if (section.Count > 0)
    yield return section.AsReadOnly();
}

static IEnumerable<T> AsReadOnly<T>(this IEnumerable<T> source)
{
  foreach (var item in source)
    yield return item;
}
link|improve this answer
Brilliant - best solution here! A few optimizations: * Clear the linked list instead of creating a new one for each section. A reference to the linked list is never returned to the caller, so it's completely safe. * Don't create the linked list until you reach the first item - that way there's no allocation if the source is empty – ShadowChaser May 6 '11 at 17:24
@ShadowChaser According to MSDN clearing the LinkedList is O(N) complexity so it would ruin my goal of O(1). Of course, you could argue that the foreach is O(N) to begin with... :) – Mike May 9 '11 at 15:31
feedback
static class LinqExtensions
{
    public static IEnumerable<IEnumerable<T>> Split<T>(this IEnumerable<T> list, int parts)
    {
            return list.Select((item, index) => new {index, item})
                       .GroupBy(x => x.index % parts)
                       .Select(x => x.Select(y => y.item));
    }
}
link|improve this answer
feedback

Splitting a collection into n pieces is easy enough; there isn't an in-built LINQ extension method, but you can add your own. The only trick is - you need to know the length up front. So perhaps (by default) consider an extension method on something such as ICollection<T> (which has the Count). Then it is something like my previous answer:

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;

static class Program { // formatted for vertical space
    static void Main() {
        var items = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };

        int grp = 0;
        foreach (var group in items.Split(3)) {
            Console.WriteLine("Group " + grp++);
            foreach (var item in group) {
                Console.WriteLine(item);
            }
        }
    }
    // fallback option
    public static IEnumerable<IEnumerable<T>> Split<T>(
            this IEnumerable<T> items, int count) {
        return Split<T>(new List<T>(items), count);
    }
    // perferred option
    public static IEnumerable<IEnumerable<T>> Split<T>(
            this ICollection<T> items, int count) {
        if (count <= 0) throw new ArgumentOutOfRangeException("count");
        int size = items.Count / count;
        if ((items.Count % count) != 0) size++;
        T[] array = new T[size];
        int index = 0;
        foreach (T item in items) {
            array[index++] = item;
            if (index == size) {
                yield return new ReadOnlyCollection<T>(array);
                index = 0;
            }
        }
        if (array != null) {
            Array.Resize(ref array, index);
            yield return new ReadOnlyCollection<T>(array);
        }
    }
}
link|improve this answer
For anyone wondering why Marc didn't just use Count() - the above code makes sure that the source sequence is only evaluated once. (I assume this is the reason, anyway.) This can be very important. Of course, it requires more memory to buffer things... – Jon Skeet Jan 13 '09 at 8:33
yes - I was thinking about "read once" streams, such as iterator blocks, LINQ-to-SQL, etc. – Marc Gravell Jan 13 '09 at 8:48
That seems awefully complicated. If you really did have a read-once stream it is easier to just dump it into a list and then chop it up by index. – Jonathan Allen Mar 17 '09 at 18:14
And if the stream is infinite? Or just stupidly long? Often, LINQ-to-Objects is used for things like file parsing, network stream handling, etc - no end is in sight... so buffer-free is hugely desirable. – Marc Gravell Mar 17 '09 at 20:02
feedback

I have been using the Partition function I posted earlier quite often. The only bad thing about it was that is wasn't completely streaming. This is not a problem if you work with few elements in your sequence. I needed a new solution when i started working with 100.000+ elements in my sequence.

The following solution is a lot more complex (and more code!), but it is very efficient.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;

namespace LuvDaSun.Linq
{
    public static class EnumerableExtensions
    {
        public static IEnumerable<IEnumerable<T>> Partition<T>(this IEnumerable<T> enumerable, int partitionSize)
        {
            /*
            return enumerable
                .Select((item, index) => new { Item = item, Index = index, })
                .GroupBy(item => item.Index / partitionSize)
                .Select(group => group.Select(item => item.Item)                )
                ;
            */

            return new PartitioningEnumerable<T>(enumerable, partitionSize);
        }

    }


    class PartitioningEnumerable<T> : IEnumerable<IEnumerable<T>>
    {
        IEnumerable<T> _enumerable;
        int _partitionSize;
        public PartitioningEnumerable(IEnumerable<T> enumerable, int partitionSize)
        {
            _enumerable = enumerable;
            _partitionSize = partitionSize;
        }

        public IEnumerator<IEnumerable<T>> GetEnumerator()
        {
            return new PartitioningEnumerator<T>(_enumerable.GetEnumerator(), _partitionSize);
        }

        IEnumerator IEnumerable.GetEnumerator()
        {
            return GetEnumerator();
        }
    }


    class PartitioningEnumerator<T> : IEnumerator<IEnumerable<T>>
    {
        IEnumerator<T> _enumerator;
        int _partitionSize;
        public PartitioningEnumerator(IEnumerator<T> enumerator, int partitionSize)
        {
            _enumerator = enumerator;
            _partitionSize = partitionSize;
        }

        public void Dispose()
        {
            _enumerator.Dispose();
        }

        IEnumerable<T> _current;
        public IEnumerable<T> Current
        {
            get { return _current; }
        }
        object IEnumerator.Current
        {
            get { return _current; }
        }

        public void Reset()
        {
            _current = null;
            _enumerator.Reset();
        }

        public bool MoveNext()
        {
            bool result;

            if (_enumerator.MoveNext())
            {
                _current = new PartitionEnumerable<T>(_enumerator, _partitionSize);
                result = true;
            }
            else
            {
                _current = null;
                result = false;
            }

            return result;
        }

    }



    class PartitionEnumerable<T> : IEnumerable<T>
    {
        IEnumerator<T> _enumerator;
        int _partitionSize;
        public PartitionEnumerable(IEnumerator<T> enumerator, int partitionSize)
        {
            _enumerator = enumerator;
            _partitionSize = partitionSize;
        }

        public IEnumerator<T> GetEnumerator()
        {
            return new PartitionEnumerator<T>(_enumerator, _partitionSize);
        }

        IEnumerator IEnumerable.GetEnumerator()
        {
            return GetEnumerator();
        }
    }


    class PartitionEnumerator<T> : IEnumerator<T>
    {
        IEnumerator<T> _enumerator;
        int _partitionSize;
        int _count;
        public PartitionEnumerator(IEnumerator<T> enumerator, int partitionSize)
        {
            _enumerator = enumerator;
            _partitionSize = partitionSize;
        }

        public void Dispose()
        {
        }

        public T Current
        {
            get { return _enumerator.Current; }
        }
        object IEnumerator.Current
        {
            get { return _enumerator.Current; }
        }
        public void Reset()
        {
            if (_count > 0) throw new InvalidOperationException();
        }

        public bool MoveNext()
        {
            bool result;

            if (_count < _partitionSize)
            {
                if (_count > 0)
                {
                    result = _enumerator.MoveNext();
                }
                else
                {
                    result = true;
                }
                _count++;
            }
            else
            {
                result = false;
            }

            return result;
        }

    }
}

Enjoy!

link|improve this answer
very cool. thanks. – Simon_Weaver Feb 18 '10 at 0:22
This version breaks the contract of IEnumerator. It's not valid to throw InvalidOperationException when Reset is called - I believe many of the LINQ extension methods rely on this behavior. – ShadowChaser May 6 '11 at 17:05
feedback

Interesting thread. To get a streaming version of Split/Partition, one can use enumerators and yield sequences from the enumerator using extension methods. Converting imperative code to functional code using yield is a very powerful technique indeed.

First an enumerator extension that turns a count of elements into a lazy sequence:

public static IEnumerable<T> TakeFromCurrent<T>(this IEnumerator<T> enumerator, int count)
{
    while (count > 0)
    {
        yield return enumerator.Current;
        if (--count > 0 && !enumerator.MoveNext()) yield break;
    }
}

And then an enumerable extension that partitions a sequence:

public static IEnumerable<IEnumerable<T>> Partition<T>(this IEnumerable<T> seq, int partitionSize)
{
    var enumerator = seq.GetEnumerator();

    while (enumerator.MoveNext())
    {
        yield return enumerator.TakeFromCurrent(partitionSize);
    }
}

The end result is a highly efficient, streaming and lazy implementation that relies on very simple code.

Enjoy!

link|improve this answer
I initially programmed the same thing, but the pattern breaks when Reset is called on one of the nested IEnumerable<T> instances. – ShadowChaser May 6 '11 at 17:13
Does this still work if you only enumerate the partition and not the inner enumerable? since the inner enumerator is deferred then none of the code for the inner (take from current) will execute until it is enumerated therefore movenext() will only be called by the outer partition function, right? If my assumptions are true then this can potentially yield n partitions with n elements in the original enumerable and the inner enumerables will yield unexpected results – Brad Nov 16 '11 at 19:11
feedback

I use this:

    public static IEnumerable<IEnumerable<T>> Partition<T>(this IEnumerable<T> instance, int partitionSize)
    {
        return instance
            .Select((value, index) => new { Index = index, Value = value })
            .GroupBy(i => i.Index / partitionSize)
            .Select(i => i.Select(i2 => i2.Value))
        ;
    }
link|improve this answer
-1 your answer is wrong. Divide operator doesn't ensure the correct partition size – Hasan Khan Nov 25 '11 at 7:33
Please explain why. I have been using this function without any trouble! – Elmer Dec 2 '11 at 2:58
read the question again and see if you get n (almost) equal length parts with your function – Hasan Khan Dec 2 '11 at 8:13
feedback

OK, so this is purely using LINQ, haven't fully tested it but it looks ok and it compiles. Similar to Marc Gravell's but implemented differently.

public static IEnumerable<IEnumerable<T>> Partition<T>
    (this IEnumerable<T> query, int partitions)
{
    // make a single query to get all records
    var all = query.ToList(); 

    // work out how many to take each time
    var take = items.Count / partitions;
    if ((items.Count % take) != 0) take++;

    for(var skip = 0; skip < all.Count; skip += take)
    {
        yield return all.Skip(skip).Take(take);
    }
}

Example usage:

var query = from entity in Context.Entities
            select entity;

return query.Partition(10);
link|improve this answer
Actually, that is more comparable to my Split version that Partition (which takes n items at a time). Very neat, but it reads (and skips) the early records lots of times... and you might have an off-by-one if it isn't cleanly divisible - i.e. Count is 10 and partitions is 3 - you'll return 4 blocks. – Marc Gravell Jan 13 '09 at 8:51
(I edited to add the missing "static" - needed for extension methods; note that it should probably take IEnumerable<T>, which would include IQueryable<T> by implication) – Marc Gravell Jan 13 '09 at 8:53
Need to double check the partitioning and have made it extend IEnumerable<T> instead. Is the skipping each time really that bad? – Garry Shutler Jan 13 '09 at 9:04
(removed my other comment, since I missed your ToList usage) – Marc Gravell Jan 13 '09 at 9:52
For small data, no it is fine; but for large volumes of data, it might be. Of course, for large volumes of data there are bigger issues (unrelated to this). ;-p – Marc Gravell Jan 13 '09 at 9:53
show 1 more comment
feedback

If order in these parts is not very important you can try this:

int[] array = new int[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int n = 3;

var result =
   array.Select((value, index) => new { Value = value, Index = index }).GroupBy(i => i.Index % n, i => i.Value);

// or
var result2 =
   from i in array.Select((value, index) => new { Value = value, Index = index })
   group i.Value by i.Index % n into g
   select g;

However these can't be cast to IEnumerable<IEnumerable<int>> by some reason...

link|improve this answer
feedback
int[] items = new int[] { 0,1,2,3,4,5,6,7,8,9, 10 };

int itemIndex = 0;
int groupSize = 2;
int nextGroup = groupSize;

var seqItems = from aItem in items
               group aItem by 
                            (itemIndex++ < nextGroup) 
                            ? 
                            nextGroup / groupSize
                            :
                            (nextGroup += groupSize) / groupSize
                            into itemGroup
               select itemGroup.AsEnumerable();
link|improve this answer
feedback

This is my code, nice and short.

 <Extension()> Public Function Chunk(Of T)(ByVal this As IList(Of T), ByVal size As Integer) As List(Of List(Of T))
     Dim result As New List(Of List(Of T))
     For i = 0 To CInt(Math.Ceiling(this.Count / size)) - 1
         result.Add(New List(Of T)(this.GetRange(i * size, Math.Min(size, this.Count - (i * size)))))
     Next
     Return result
 End Function
link|improve this answer
feedback

Edit - Nm doesn't work on infinite sequences

link|improve this answer
why would i want to split an infinite sequence in two? – Simon_Weaver Feb 10 '10 at 8:43
For divvying up the processing so that it can be performed in parallel. Useful in .NET 4.0. – Arash Feb 25 '10 at 9:44
feedback

This is memory efficient and defers execution as much as possible (per batch) and operates in linear time O(n)

    public static IEnumerable<IEnumerable<T>> InBatchesOf<T>(this IEnumerable<T> items, int batchSize)
    {
        List<T> batch = new List<T>(batchSize);
        foreach (var item in items)
        {
            batch.Add(item);

            if (batch.Count >= batchSize)
            {
                yield return batch;
                batch = new List<T>();
            }
        }

        if (batch.Count != 0)
        {
            //can't be batch size or would've yielded above
            batch.TrimExcess();
            yield return batch;
        }
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.