'For loop with 20 items skip each time

I would like to write a piece of for loop which would go through an existing list and take 20 items out of that list each time it iterates.

So something like this:

  • If filteredList list contains let's say 68 items...
  • First 3 loops would take 20 times each and then in last 4th iteration it would take the rest of the 8 items that are residing in the list...

I have written something like this:

var allResponses= new List<string>();
for (int i = 0; i < filteredList.Count(); i++)
{
    allResponses.Add(GetResponse(filteredList.Take(20).ToList()));
}

Where assuming filteredList is a list that contains 68 items. I figured that this is not a way to go because I don't want to loop to the collections size, but instead of 68 times, it should be 4 times and that I take 20 items out of the list each time... How could I do this?



Solution 1:[1]

You simply have to calculate the number of pages:

const in PAGE_SIZE = 20;
int pages = filteredList.Count() / PAGE_SIZE
            + (filteredList.Count() % PAGE_SIZE > 0 ? 1 : 0)
            ;

The last part makes sure that with 21, there will be added 1 page above the previously calculated page size (since 21/20 = 1).

Or, when using MoreLINQ, you could simply use a Batch call.

Solution 2:[2]

I suggest a simple loop with page adding on 0, 20, 40... iterations without Linq and complex modular operations:

int pageSize = 20;

List<String> page = null;

for (int i = 0; i < filteredList.Count; ++i) {
  // if page reach pageSize, add a new one 
  if (i % pageSize == 0) {
    page = new List<String>(pageSize);   

    allResponses.Add(page); 
  }

  page.Add(filteredList[i]); 
}

Solution 3:[3]

i needed to do same but i needed to skip 10 after each element so i wrote this simple code

List<Location2D> points = new List<Location2D>();
                points.ForEach(p =>
                {
                    points.AddRange(path.Skip((int)points.Count * 10).Take(1));
                });
                if (!points.Contains(path.LastOrDefault()))
                    points.Add(path.LastOrDefault());

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Community
Solution 2 Dmitry Bychenko
Solution 3 Mr.PoP