Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

7 Answers

up vote 72 down vote accepted
collection.Skip(Math.Max(0, collection.Count() - N)).Take(N);
share|improve this answer
1  
+1, as this works in Linq to Entities/SQL. I'm guessing it's also more performant in Linq to Objects than James Curran's strategy. – StriplingWarrior Aug 10 '10 at 20:57
7  
Depends on the nature of collection. Count() might be O(N). – James Curran Aug 10 '10 at 21:00
2  
@James: Absolutely correct. If dealing strictly with IEnumerable collections, this could be a two-pass query. I'd be very interested in seeing a guaranteed 1-pass algorithm. It might be useful. – kbrimington Aug 10 '10 at 21:18
3  
Did some benchmarks. It turns out LINQ to Objects performs some optimizations based on the type of collection you're using. Using arrays, Lists, and LinkedLists, James's solution tends to be faster, though not by an order of magnitude. If the IEnumerable is calculated (via Enumerable.Range, e.g.), James's solution takes longer. I can't think of any way to guarantee a single pass without either knowing something about the implementation or copying values to a different data structure. – StriplingWarrior Aug 10 '10 at 21:32
10  
I'm missing the point of the .Take(N) - seems to work fine without it... – RedFilter Jan 5 '12 at 16:44
show 10 more comments

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:

IEnumerable<int> sequence = Enumerable.Range(1, 10000);
IEnumerable<int> last10 = sequence.Last(10);
...

Extension method:

public static class Extensions
{
    public static IEnumerable<T> Last<T>(this IEnumerable<T> collection, int n)
    {
        if (collection == null)
            throw new ArgumentNullException("collection");
        if (n < 0)
            throw new ArgumentOutOfRangeException("n", "n must be 0 or greater");

        LinkedList<T> temp = new LinkedList<T>();

        foreach (var value in collection)
        {
            temp.AddLast(value);
            if (temp.Count > n)
                temp.RemoveFirst();
        }

        return temp;
    }
}
share|improve this answer
Nice, clean and much better performance. – Kyle Rozendo Aug 10 '10 at 20:53
I still think you have a good, valid answer even if it isn't technically using Linq, so I still give you a +1 :) – mgroves Aug 10 '10 at 21:17
clean, neat and extensible +1 ! – Yasser Dec 4 '12 at 6:24
coll.Reverse().Take(N).Reverse().ToList();


public static IEnumerable<T> TakeLast<T>(this IEnumerable<T> coll, int N)
{
    return coll.Reverse().Take(N).Reverse();
}

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:

List<string> mystring = new List<string>() { "one", "two", "three" }; 
mystring = Enumerable.Reverse(mystring).Take(2).Reverse().ToList();
share|improve this answer
The problem I have with this, is if I say: List<string> mystring = new List<string>() { "one", "two", "three" }; mystring = mystring.Reverse().Take(2).Reverse(); I get a compiler error because .Reverse() returns void and the compiler chooses that method instead of the Linq one that returns an IEnumerable. Suggestions? – clintp Dec 21 '10 at 16:14
You can solve this problem by explicitly casting mystring to IEnumerable<String>: ((IEnumerable<String>)mystring).Reverse().Take(2).Reverse() – Jan Hettich Aug 17 '11 at 18:08

Here's a method that works on any enumerable but uses only O(N) temporary storage:

public static class TakeLastExtension
{
    public static IEnumerable<T> TakeLast<T>(this IEnumerable<T> source, int n)
    {
        if (source == null) { throw new ArgumentNullException("source"); }
        if (n < 0) { throw new ArgumentOutOfRangeException("must not be negative", "n"); }
        if (n == 0) { yield break; }

        T[] result = new T[n];
        int i = 0;
        int count = 0;
        foreach (T t in source)
        {
            result[i] = t;
            i = (i + 1) % n;
            count++;
        }

        if (count < n)
        {
            n = count;
            i = 0;
        }

        for (int j = 0; j < n; ++j)
        {
            yield return result[(i + j) % n];
        }
    }
}

Usage:

List<int> l = new List<int> {4, 6, 3, 6, 2, 5, 7};
List<int> lastElements = l.TakeLast(3).ToList();

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.

share|improve this answer
2  
+1: This should have better performance than mine, but you should make sure it does the right thing when the collection contains fewer elements than n. – Lasse V. Karlsen Aug 10 '10 at 20:58
Well, most of the time I assume people will take care when copying code from SO for production use to add such things themselves, it might not be a problem. If you're going to add it, consider checking the collection variable for null as well. Otherwise, excellent solution :) I was considering using a ring-buffer myself, because a linked list will add GC-pressure, but it's been a while since I did one and I didn't want to hassle with test-code to figure out if I did it right. I must say I'm falling in love with LINQPad though :) linqpad.net – Lasse V. Karlsen Aug 10 '10 at 21:11
A possible optimization would be to check if the enumerable implemented IList, and use the trivial solution if it does. The temporary storage approach would then only be needed for truely 'streaming' IEnumerables – piers7 Jul 29 '11 at 1:21
1  
trivial nit-pick: your arguments to ArgumentOutOfRangeException are in the wrong order (R# says) – piers7 Jul 29 '11 at 1:29

If you don't mind dipping into Rx as part of the monad, you can use TakeLast:

IEnumerable<int> source = Enumerable.Range(1, 10000);

IEnumerable<int> lastThree = source.AsObservable().TakeLast(3).AsEnumerable();
share|improve this answer
You don't need AsObservable() if you reference RX's System.Interactive instead of System.Reactive (see my answer) – piers7 Jul 29 '11 at 1:32

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)

share|improve this answer

I am surprised that no one has mentioned it, but SkipWhile does have a method that uses the element's index.

public static IEnumerable<T> TakeLastN<T>(this IEnumerable<T> source, int n)
{
    if (source == null)
        throw new ArgumentNullException("Source cannot be null");

    int goldenIndex = source.Count() - n;
    return source.SkipWhile((val, index) => index < goldenIndex);
}

//Or if you like them one-liners (in the spirit of the current accepted answer);
//However, this is most likely impractical due to the repeated calculations
collection.SkipWhile((val, index) => index < collection.Count() - N)

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.

public static IEnumerable<T> FilterLastN<T>(this IEnumerable<T> source, int n, Predicate<T> pred)
{
    int goldenIndex = source.Count() - n;
    return source.SkipWhile((val, index) => index < goldenIndex && pred(val));
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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