vote up 2 vote down star

I would like to call FindLast on a collection which implements IEnumarable, but FindLast is only available for List. What is the best solution?

flag

60% accept rate
can someone s/arable/erable. please :P – Ruben Bartelink Jan 15 at 12:42

5 Answers

vote up 5 vote down check

The equivalent to:

var last = list.FindLast(predicate);

is

var last = sequence.Where(predicate).LastOrDefault();

(The latter will have to check all items in the sequence, however...)

Effectively the "Where()" is the Find part, and the "Last()" is the Last part of "FindLast" respectively. Similarly, FindFirst(predicate) would be map to sequence.Where(predicate).FirstOrDefault() and FindAll(predicate) would be sequence.Where(predicate).

link|flag
Note also FirstOrDefault(predicate), which saves a few keys ;-p – Marc Gravell Jan 12 at 15:57
Yup, hadn't seen that. Doh! – Jon Skeet Jan 12 at 16:08
Depending on the comparison method, length of list and frequency of matches it might be more CPU efficient to: sequence.Reverse.Where(predicate).FirstOrDefault(); Not very memory efficient however. – mancaus Jan 12 at 16:51
vote up 3 vote down

How about with LINQ-to-Objects:

var item = data.LastOrDefault(x=>x.Whatever == "abc"); // etc

If you only have C# 2, you can use a utility method instead:

using System;
using System.Collections.Generic;
static class Program {
    static void Main() {
        int[] data = { 1, 2, 3, 4, 5, 6 };

        int lastOdd = SequenceUtil.Last<int>(
            data, delegate(int i) { return (i % 2) == 1; });
    }    
}
static class SequenceUtil {
    public static T Last<T>(IEnumerable<T> data, Predicate<T> predicate) {
        T last = default(T);
        foreach (T item in data) {
            if (predicate(item)) last = item;
        }
        return last;
    }
}
link|flag
can we not just edit that into skeet's answer? – Ruben Bartelink Jan 12 at 15:52
Forgot a smiley :D – Ruben Bartelink Jan 12 at 15:53
The top bit, maybe - but I thought the 2.0 stuff might be useful, so I kept it separate. – Marc Gravell Jan 12 at 15:57
Ah, only saw v1! Handn't even considered that one would go and invest the time to expand on it as you did... BTW for all these Util type things, PowerCollections used to be my hammer back when I was constrained to 2.0 - algorithms.cs is a great read. Bet it's Last() has an opt for Collection! – Ruben Bartelink Jan 12 at 16:18
vote up 1 vote down

you can add you collection to a new List by passing it to List<> constructor.

List<MyClass> myList = new List<MyClass>(MyCol);
myList.FindLast....
link|flag
vote up 0 vote down

Use the extension method Last() which is located in the namespace System.Linq.

link|flag
That doesn't apply the predicate... – Marc Gravell Jan 12 at 15:58
vote up 0 vote down

Your question is invalid because a collection has no last element. A more specialized collection that does have a complete ordering is a list. A more specialized collection that does not have an ordering is a dictionary.

link|flag

Your Answer

Get an OpenID
or

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