Max.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Collections.Generic;
  5. namespace System.Linq
  6. {
  7. public static partial class EnumerableEx
  8. {
  9. /// <summary>
  10. /// Returns the maximum value in the enumerable sequence by using the specified comparer to compare values.
  11. /// </summary>
  12. /// <typeparam name="TSource">Source sequence element type.</typeparam>
  13. /// <param name="source">Source sequence.</param>
  14. /// <param name="comparer">Comparer used to determine the maximum value.</param>
  15. /// <returns>Maximum value in the sequence.</returns>
  16. public static TSource Max<TSource>(this IEnumerable<TSource> source, IComparer<TSource> comparer)
  17. {
  18. if (source == null)
  19. throw new ArgumentNullException(nameof(source));
  20. if (comparer == null)
  21. throw new ArgumentNullException(nameof(comparer));
  22. return MaxBy(source, x => x, comparer).First();
  23. }
  24. /// <summary>
  25. /// Returns the elements with the maximum key value by using the default comparer to compare key values.
  26. /// </summary>
  27. /// <typeparam name="TSource">Source sequence element type.</typeparam>
  28. /// <typeparam name="TKey">Key type.</typeparam>
  29. /// <param name="source">Source sequence.</param>
  30. /// <param name="keySelector">Key selector used to extract the key for each element in the sequence.</param>
  31. /// <returns>List with the elements that share the same maximum key value.</returns>
  32. public static IList<TSource> MaxBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector)
  33. {
  34. if (source == null)
  35. throw new ArgumentNullException(nameof(source));
  36. if (keySelector == null)
  37. throw new ArgumentNullException(nameof(keySelector));
  38. return MaxBy(source, keySelector, Comparer<TKey>.Default);
  39. }
  40. /// <summary>
  41. /// Returns the elements with the minimum key value by using the specified comparer to compare key values.
  42. /// </summary>
  43. /// <typeparam name="TSource">Source sequence element type.</typeparam>
  44. /// <typeparam name="TKey">Key type.</typeparam>
  45. /// <param name="source">Source sequence.</param>
  46. /// <param name="keySelector">Key selector used to extract the key for each element in the sequence.</param>
  47. /// <param name="comparer">Comparer used to determine the maximum key value.</param>
  48. /// <returns>List with the elements that share the same maximum key value.</returns>
  49. public static IList<TSource> MaxBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector, IComparer<TKey> comparer)
  50. {
  51. if (source == null)
  52. throw new ArgumentNullException(nameof(source));
  53. if (keySelector == null)
  54. throw new ArgumentNullException(nameof(keySelector));
  55. if (comparer == null)
  56. throw new ArgumentNullException(nameof(comparer));
  57. return ExtremaBy(source, keySelector, (key, minValue) => comparer.Compare(key, minValue));
  58. }
  59. private static IList<TSource> ExtremaBy<TSource, TKey>(IEnumerable<TSource> source, Func<TSource, TKey> keySelector, Func<TKey, TKey, int> compare)
  60. {
  61. var result = new List<TSource>();
  62. using (var e = source.GetEnumerator())
  63. {
  64. if (!e.MoveNext())
  65. throw new InvalidOperationException("Source sequence doesn't contain any elements.");
  66. var current = e.Current;
  67. var resKey = keySelector(current);
  68. result.Add(current);
  69. while (e.MoveNext())
  70. {
  71. var cur = e.Current;
  72. var key = keySelector(cur);
  73. var cmp = compare(key, resKey);
  74. if (cmp == 0)
  75. {
  76. result.Add(cur);
  77. }
  78. else if (cmp > 0)
  79. {
  80. result = new List<TSource>
  81. {
  82. cur
  83. };
  84. resKey = key;
  85. }
  86. }
  87. }
  88. return result;
  89. }
  90. }
  91. }