I'm a complete LINQ newbie, so I don't know if my LINQ is incorrect for what I need to do or if my expectations of performance are too high.

I've got a SortedList of objects, keyed by int; SortedList as opposed to SortedDictionary because I'll be populating the collection with pre-sorted data. My task is to find either the exact key or, if there is no exact key, the one with the next higher value. If the search is too high for the list (e.g. highest key is 100, but search for 105), return null.

// The structure of this class is unimportant.  Just using
// it as an illustration.
public class CX
{
    public int KEY;
    public DateTime DT;
}

static CX getItem(int i, SortedList<int, CX> list)
{
    var items =
    (from kv in list
     where kv.Key >= i
     select kv.Key);

    if (items.Any())
    {
        return list[items.Min()];
    }

    return null;
}

Given a list of 50,000 records, calling getItem 500 times takes about a second and a half. Calling it 50,000 times takes over 2 minutes. This performance seems very poor. Is my LINQ bad? Am I expecting too much? Should I be rolling my own binary search function?

link|improve this question

The standard List class actually has a BinarySearch method built in, which you can use; see my answer below. – tzaman May 24 '10 at 15:37
tzaman was right to suggest using a built-in BinarySearch method; it's just that using List<T>.BinarySearch isn't the way to go because it requires having your keys in a List<T>. I've posted an answer that includes code for an extension method on any IList<T> (this includes the SortedList<TKey, TValue>.Keys property) taken straight from Microsoft's binary search implementation. You may find it useful. – Dan Tao May 24 '10 at 19:33
feedback

5 Answers

up vote 4 down vote accepted

Writing a binary search on your own can be tough.

Fortunately, Microsoft already wrote a pretty robust one: Array.BinarySearch<T>. This is, in fact, the method that SortedList<TKey, TValue>.IndexOfKey uses internally. Only problem is, it takes a T[] argument, instead of any IList<T> (like SortedList<TKey, TValue>.Keys).

You know what, though? There's this great tool called Reflector that lets you look at .NET source code...

Check it out: a generic BinarySearch extension method on IList<T>, taken straight from the reflected code of Microsoft's Array.BinarySearch<T> implementation.

public static int BinarySearch<T>(this IList<T> list, int index, int length, T value, IComparer<T> comparer) {
    if (list == null)
        throw new ArgumentNullException("list");
    else if (index < 0 || length < 0)
        throw new ArgumentOutOfRangeException((index < 0) ? "index" : "length");
    else if (list.Count - index < length)
        throw new ArgumentException();

    int lower = index;
    int upper = (index + length) - 1;

    while (lower <= upper) {
        int adjustedIndex = lower + ((upper - lower) >> 1);
        int comparison = comparer.Compare(list[adjustedIndex], value);
        if (comparison == 0)
            return adjustedIndex;
        else if (comparison < 0)
            lower = adjustedIndex + 1;
        else
            upper = adjustedIndex - 1;
    }

    return ~lower;
}

public static int BinarySearch<T>(this IList<T> list, T value, IComparer<T> comparer) {
    return list.BinarySearch(0, list.Count, value, comparer);
}

public static int BinarySearch<T>(this IList<T> list, T value) where T : IComparable<T> {
    return list.BinarySearch(value, Comparer<T>.Default);
}

This will let you call list.Keys.BinarySearch and get the negative bitwise complement of the index you want in case the desired key isn't found (the below is taken basically straight from tzaman's answer):

int index = list.Keys.BinarySearch(i);
if (index < 0)
    index = ~index;
var item = index < list.Count ? list[list.Keys[index]] : null;
return item;
link|improve this answer
Nice! This extension combined with my answer would be the definitive way to solve this, I think. – tzaman May 25 '10 at 5:29
This is the one. Thank you and thanks to others who answered as well. – Chris Simmons May 25 '10 at 17:53
feedback

First, your query is being evaluated twice (once for Any, and once for Min). Second, Min requires that it iterate over the entire list, even though the fact that it's sorted means that the first item will be the minimum. You should be able to change this:

if (items.Any())
{
    return list[items.Min()];
}

To this:

var default = 
    (from kv in list
     where kv.Key >= i
     select (int?)kv.Key).FirstOrDefault();

if(default != null) return list[default.Value];

return null;

UPDATE

Because you're selecting a value type, FirstOrDefault doesn't return a nullable object. I have altered your query to cast the selected value to an int? instead, allowing the resulting value to be checked for null. I would advocate this over using ContainsKey, as that would return true if your list contained a value for 0. For example, say you have the following values

0 2 4 6 8

If you were to pass in anything less than or equal to 8, then you would get the correct value. However, if you were to pass in 9, you would get 0 (default(int)), which is in the list but isn't a valid result.

link|improve this answer
Wow, yeah. That changed 2 minutes to 1/2 a second. – Chris Simmons May 24 '10 at 14:44
Since FirstOrDefault is going to be returning the int key here, I needed to change default.Value to just default. A couple things, though: What is the "Default" here? I can't seem to find the meaning of that in MSDN. And since I don't know that, I need to check list.ContainsKey(default) before I return list[default]; Fortunately, that doesn't add any significant time to the execution. – Chris Simmons May 24 '10 at 14:52
Would the default just be the default for int, 0? – Chris Simmons May 24 '10 at 14:53
n/m on the default question. I see this means 0 for value types. – Chris Simmons May 24 '10 at 14:59
@Chris: See my update. – Adam Robinson May 24 '10 at 15:02
show 6 more comments
feedback

Using LINQ on a SortedList will not give you the benefit of the sort.

For optimal performance, you should write your own binary search.

link|improve this answer
I had hoped not, but this is what I feared. Thanks! – Chris Simmons May 24 '10 at 14:42
There's no reason that LINQ can't be used on the list in a way that respects the sorting. You just shouldn't expect functions like Min to be aware of the optimizations that can be made (ie, the fact that items are guaranteed to be in order in the list, so Min is just the first and Max is just the last). – Adam Robinson May 24 '10 at 14:45
@Adam Robinson: It still seems like SLaks is right, though; won't a Where followed by a FirstOrDefault essentially result in a linear search for the first matching value? Yes, that's better than Min (which would have to enumerate); but it's still not as fast as it could be. I don't think the LINQ extensions are specially aware of always-sorted collections such as SortedList.Keys. Am I wrong about that? Or am I missing something? – Dan Tao May 24 '10 at 15:21
@SLaks: Curious to know: why did you strike out the line about using binary search? It seems to me this was an accurate statement; what am I missing? – Dan Tao May 24 '10 at 15:22
@Dan: No, they aren't aware of the internals of the data store (all they know is that it implements IEnumerable<T> or IQueryable<T>), but that doesn't mean that you can't code a LINQ query (that's more than just a simple value search) that takes advantage of the sorted nature of the list. You're right in that it is performing a linear search, but that's what the list would do internally (this is a SortedList, not a SortedDictionary, which would use a hash table). Furthermore, because the OP wants to find the value or the next highest if it isn't present, a linear search is required. – Adam Robinson May 24 '10 at 15:25
show 6 more comments
feedback

OK, just to give this a little more visibility - here's a more concise version of Adam Robinson's answer:

return list.FirstOrDefault(kv => kv.Key >= i).Value; 

The FirstOrDefault function has an overload that accepts a predicate, which selects the first element satisfying a condition - you can use that to directly get the element you want, or null if it doesn't exist.

link|improve this answer
feedback

Why not use the BinarySearch that's built into the List class?

var keys = list.Keys.ToList();
int index = keys.BinarySearch(i);
if (index < 0)
    index = ~index;
var item = index < keys.Count ? list[keys[index]] : null;
return item;

If the search target isn't in the list, BinarySearch returns the bit-wise complement of the next-higher item; we can use that to directly get you what you want by re-complementing the result if it's negative. If it becomes equal to the Count, your search key was bigger than anything in the list.

This should be much faster than doing a LINQ where, since it's already sorted... As comments have pointed out, the ToList call will force an evaluation of the whole list, so this is only beneficial if you do multiple searches without altering the underlying SortedList, and you keep the keys list around separately.

link|improve this answer
Very interesting. I'll give this a try. – Chris Simmons May 24 '10 at 15:37
2  
Whoa, this will definitely not be faster. ToList will populate an entirely new List. This makes it O(n) minimum, in addition to a whole added memory cost. – Dan Tao May 24 '10 at 15:37
While this is an interesting idea, transforming a SortedList into a List in this fashion is going to evaluate every element of the underlying SortedList individually anyway. – Adam Robinson May 24 '10 at 15:38
Oh drat, of course. That brings up the question, why isn't there a BinarySearch method on the SortedList class itself? It'd seem like a no-brainer... On the other hand, if you're doing more than one search in a row without altering the SortedList, you can keep the Keys list around separately, which would make this approach worthwhile. – tzaman May 24 '10 at 15:41
feedback

Your Answer

 
or
required, but never shown

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