Is there a nice way to split a collection into 'n' parts with LINQ ? Not necessarily even of course
feedback
|
|
A pure linq and the simplest solution is as under.
| |||||||||||||||
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:
| |||||||||||
feedback
|
|
Ok, I'll throw my hat in the ring. The advantages of my algorithm:
The code:
| |||||
feedback
|
| |||
|
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
| |||||||||
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.
Enjoy! | |||||
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:
And then an enumerable extension that partitions a sequence:
The end result is a highly efficient, streaming and lazy implementation that relies on very simple code. Enjoy! | |||||
feedback
|
|
I use this:
| |||||||
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.
Example usage:
| |||||||||||
feedback
|
|
If order in these parts is not very important you can try this:
However these can't be cast to IEnumerable<IEnumerable<int>> by some reason... | |||
|
feedback
|
| |||
|
feedback
|
|
This is my code, nice and short.
| ||||
|
feedback
|
|
Edit - Nm doesn't work on infinite sequences | |||||
feedback
|
|
This is memory efficient and defers execution as much as possible (per batch) and operates in linear time O(n)
| ||||
|
feedback
|