Enumerate through a subset of a Collection in C#?

后端 未结 6 1477
粉色の甜心
粉色の甜心 2021-02-08 01:12

Is there a good way to enumerate through only a subset of a Collection in C#? That is, I have a collection of a large number of objects (say, 1000), but I\'d like to enumerate

相关标签:
6条回答
  • 2021-02-08 01:32

    Adapting Jared's original code for .Net 2.0:

    IEnumerable<T> GetRange(IEnumerable<T> source, int start, int end)
    {
        int i = 0;
        foreach (T item in source)
        {
            i++;
            if (i>end) yield break;
            if (i>start) yield return item;
        }
    }
    

    And to use it:

     foreach (T item in GetRange(MyCollection, 250, 340))
     {
         // do something
     }
    
    0 讨论(0)
  • 2021-02-08 01:34

    You might be able to do something with Linq. The way I would do this is to put the objects into an array, then I can choose which items I want to process based on the array id.

    0 讨论(0)
  • 2021-02-08 01:37

    I like to keep it simple (if you don't necessarily need the enumerator):

    for (int i = 249; i < Math.Min(340, list.Count); i++)
    {
        // do something with list[i]
    }
    
    0 讨论(0)
  • 2021-02-08 01:37

    Adapting Jarad's code once again, this extention method will get you a subset that is defined by item, not index.

        //! Get subset of collection between \a start and \a end, inclusive
        //! Usage
        //! \code
        //! using ExtensionMethods;
        //! ...
        //! var subset = MyList.GetRange(firstItem, secondItem);
        //! \endcode
    class ExtensionMethods
    {
        public static IEnumerable<T> GetRange<T>(this IEnumerable<T> source, T start, T end)
        {
    #if DEBUG
            if (source.ToList().IndexOf(start) > source.ToList().IndexOf(end))
                throw new ArgumentException("Start must be earlier in the enumerable than end, or both must be the same");
    #endif
            yield return start;
    
            if (start.Equals(end))
                yield break;                                                    //start == end, so we are finished here
    
            using (var e = source.GetEnumerator())
            { 
                while (e.MoveNext() && !e.Current.Equals(start));               //skip until start                
                while (!e.Current.Equals(end) && e.MoveNext())                  //return items between start and end
                    yield return e.Current;
            }
        }
    }
    
    0 讨论(0)
  • 2021-02-08 01:53

    Try the following

    var col = GetTheCollection();
    var subset = col.Skip(250).Take(90);
    

    Or more generally

    public static IEnumerable<T> GetRange(this IEnumerable<T> source, int start, int end) {
      // Error checking removed
      return source.Skip(start).Take(end - start);
    }
    

    EDIT 2.0 Solution

    public static IEnumerable<T> GetRange<T>(IEnumerable<T> source, int start, int end ) {
      using ( var e = source.GetEnumerator() ){ 
        var i = 0;
        while ( i < start && e.MoveNext() ) { i++; }
        while ( i < end && e.MoveNext() ) { 
          yield return e.Current;
          i++;
        }
      }      
    }
    
    IEnumerable<Foo> col = GetTheCollection();
    IEnumerable<Foo> range = GetRange(col, 250, 340);
    
    0 讨论(0)
  • 2021-02-08 01:57

    If you find that you need to do a fair amount of slicing and dicing of lists and collections, it might be worth climbing the learning curve into the C5 Generic Collection Library.

    0 讨论(0)
提交回复
热议问题