I'm trying to understand how to implement the code found in thread by Jon Skeet: Doing a range lookup in C#?
Can someone provide an setup example using something like: 1-10000, 10001-40000, 40000+
where is the first group returns a value of 1, 2, 3 respectively?
I don't quite have a grasp of how that is done in this code. tx.
public interface IRangeComparer<TRange, TValue>
{
/// <summary>
/// Returns 0 if value is in the specified range;
/// less than 0 if value is above the range;
/// greater than 0 if value is below the range.
/// </summary>
int Compare(TRange range, TValue value);
}
/// <summary>
/// See contract for Array.BinarySearch
/// </summary>
public static int BinarySearch<TRange, TValue>(IList<TRange> ranges,
TValue value,
IRangeComparer<TRange, TValue> comparer)
{
int min = 0;
int max = ranges.Count-1;
while (min <= max)
{
int mid = (min + max) / 2;
int comparison = comparer.Compare(ranges[mid], value);
if (comparison == 0)
{
return mid;
}
if (comparison < 0)
{
min = mid+1;
}
else if (comparison > 0)
{
max = mid-1;
}
}
return ~min;
}
You need to have a good grasp of generics to understand this code. Here’s a functional implementation:
Don’t forget that:
BinarySearch
are zero-based