vote up 4 vote down star
1

I'm using .NET 3.5 and would like to be able to obtain every nth item from a List. I'm not bothered as to whether it's achieved using a lambda expression or LINQ.

Edit

Looks like this question provoked quite a lot of debate (which is a good thing, right?). The main thing I've learnt is that when you think you know every way to do something (even as simple as this), think again!

flag

I didn't edit out any meaning behind your original question; I only cleaned it up and used Capitalization and punctuation correctly. (.NET is capitalized, LINQ is in all-Caps, and it's not a 'lambda', it's a 'lambda expression'.) – George Stocker Mar 25 at 17:44
You replaced "fussed" with "sure" which are not at all synonyms. – mquander Mar 25 at 17:44
Does he mean 'fussy'? – George Stocker Mar 25 at 17:45
Would seem so. Having sure doesn't make sense either, unless it's "I'm not sure if it's achievable using..." – Samuel Mar 25 at 17:47
Yes, as I understand it, that's about right. – mquander Mar 25 at 17:47
show 6 more comments

7 Answers

vote up 26 vote down check
return list.Where((x, i) => i % nStep == 0);
link|flag
@mquander: Note that this will actually give you the nth - 1 element. If you want the actual nth elements (skipping the first) then you will have to add 1 to i. – casperOne Mar 25 at 17:37
Yes, I suppose it sort of depends what you mean by "nth," but your interpretation might be more common. Add or subtract from i to suit your needs. – mquander Mar 25 at 17:39
Just to note: The Linq/Lambda solution will be much less performant than a simple loop with fixed increment. – MartinStettner Mar 25 at 17:43
But it's cooler! – TheTXI Mar 25 at 17:43
Martin: absolutely. This is neat but a loop is better. – mquander Mar 25 at 17:44
show 6 more comments
vote up 1 vote down

MartinStettner has the right idea. Be mindful that Linq is awesome, but division comes at a steep price. This is an example where iteration will be much cheaper then a predicate utilizing division. If linq must be used, the range example MartinStettner supplied would be best as it only requires division once.

link|flag
vote up 1 vote down

I'm not sure if it's possible to do with a LINQ expression, but I know that you can use the Where extension method to do it. For example to get every fifth item:

List<T> list = originalList.Where((t,i) => (i % 5) == 0).ToList();

This will get the first item and every fifth from there. If you want to start at the fifth item instead of the first, you compare with 4 instead of comparing with 0.

link|flag
vote up 7 vote down

You can use the Where overload which passes the index along with the element

var everyFourth = list.Where((x,i) => i % 4 == 0);
link|flag
Gotta say I'm a fan of this method. – Quintin Robinson Mar 25 at 17:38
I keep forgetting you can do that - very nice. – Stephen Newman Mar 25 at 17:44
vote up 9 vote down

Sounds like

IEnumerator<T> GetNth<T>(List<T> list, int n) {
  for (int i=0; i<list.Count; i+=n)
    yield return list[i]
}

would do the trick. I do not see the need to use Linq or a lambda expressions.

EDIT:

Make it

public static class MyListExtensions {
  public static IEnumerable<T> GetNth<T>(this List<T>, int n) {
    for (int i=0; i<list.Count; i+=n)
      yield return list[i]
  }
}

and you write in a LINQish way

from var element in MyList.GetNth(10) select element;

2nd Edit:

To make it even more LINQish

from var i in Range(0, ((myList.Length-1)/n)+1) select list[n*i];
link|flag
I like this method for using the this[] getter instead of Where() method, which essentially iterates every element of the IEnumerable. If you have an IList/ICollection type, this is the better approach, IMHO. – spoulson Mar 25 at 17:42
vote up 6 vote down

For Loop

for(int i = 0; i < list.Count; i += n)
    //Nth Item..
link|flag
vote up 21 vote down

I know it's "old school," but why not just use a for loop with stepping = n?

link|flag
That was basically my thought. – Mark Pim Mar 25 at 17:31
@Michael Todd: It works, but the problem with that is that you have to duplicate that functionality everywhere. By using LINQ, it becomes part of the composed query. – casperOne Mar 25 at 17:38
I don't think that's the point of this question, though – Sung Meister Mar 25 at 17:39
Hmm...haven't used LINQ, yet. I guess I should get started.... – Michael Todd Mar 25 at 17:40
@casperOne: I believe programmers invented this thing called subroutines to deal with this ;) In a real program I'd probably use a loop, despite the clever LINQ version, since a loop means you don't have to iterate over every element (increment the index by N.) – mquander Mar 25 at 17:41
show 2 more comments

Your Answer

Get an OpenID
or

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