Given a collection, is there a way to get the last N elements of that collection? If there isn't a method in the framework, what would be the best way to write an extension method to do this?
|
|
|
|||||||||||||||||||||
|
|
Note: I missed your question title which said Using Linq, so my answer does not in fact use Linq. If you want to avoid caching a non-lazy copy of the entire collection, you could write a simple method that does it using a linked list. The following method will add each value it finds in the original collection into a linked list, and trim the linked list down to the number of items required. Since it keeps the linked list trimmed to this number of items the entire time through iterating through the collection, it will only keep a copy of at most N items from the original collection. It does not require you to know the number of items in the original collection, nor iterate over it more than once. Usage:
Extension method:
|
|||||||
|
UPDATE: To address clintp's problem: a) Using the TakeLast() method I defined above solves the problem, but if you really want the do it without the extra method, then you just have to recognize the Enumerable.Reverse() can be used as an extension method, you aren't required to use it that way:
|
|||||
|
|
Here's a method that works on any enumerable but uses only O(N) temporary storage:
Usage:
It works by using a ring buffer of size N to store the elements as it sees them, overwriting old elements with new ones. When the end of the enumerable is reached the ring buffer contains the last N elements. |
|||||||||||||
|
|
If you don't mind dipping into Rx as part of the monad, you can use
|
||||
|
|
Use EnumerableEx.TakeLast in RX's System.Interactive assembly. It's an O(N) implementation like @Mark's, but it uses a queue rather than a ring-buffer construct (and dequeues items when it reaches buffer capacity). (NB: This is the IEnumerable version - not the IObservable version, though the implementation of the two is pretty much identical) |
|||
|
|
|
I am surprised that no one has mentioned it, but SkipWhile does have a method that uses the element's index.
The only perceivable benefit that this solution presents over others is that you can have the option to add in a predicate to make a more powerful and efficient LINQ query, instead of having two separate operations that traverse the IEnumerable twice.
|
|||
|
|