vote up 3 vote down star

Simple question - given an IList<T> how do you perform a binary search without writing the method yourself and without copying the data to a type with build-in binary search support. My current status is the following.

  • List<T>.BinarySearch() is not a member of IList<T>
  • There is no equivalent of the ArrayList.Adapter() method for List<T>
  • IList<T> does not inherit from IList, hence using ArrayList.Adapter() is not possible

I tend to believe that is not possible with build-in methods, but I cannot believe that such a basic method is missing from the BCL/FCL.

If it is not possible, who can give the shortest, fastest, smartest, or most beatiful binary search implementation for IList<T>?

UPDATE

We all know that a list must be sorted before using binary search, hence you can assume that it is. But I assume (but did not verify) it is the same problem with sort - how do you sort IList<T>?

CONCLUSION

There seems to be no build-in binary search for IList<T>. One can use First() and OrderBy() LINQ methods to search and sort, but it will likly have a performance hit. Implementing it yourself (as an extension method) seems the best you can do.

flag

80% accept rate
2  
You can't perform a binary search on any old data - it has to have been appropriately sorted and without duplicates first – Jeff Yates Jun 8 at 21:15
You can assume that the list is sorted. – Daniel Brückner Jun 8 at 21:19
Do you know the underlying type of the object? List<T> does provide the Sort and BinarySearch methods. – Peter Ruderman Jun 8 at 21:21
That's the problem ... I don't know anything about the implementation and don't want to put assumptions on it. – Daniel Brückner Jun 8 at 21:24
1  
But you just said we can assume it is sorted. So you don't want to put assumptions on it except that it is sorted and will support a binary search? – Jeff Yates Jun 8 at 21:26
show 1 more comment

7 Answers

vote up 10 vote down check

I doubt there is a general purpose binary search method in .NET like that, except for the one being present in some base classes (but apparently not in the interfaces), so here's my general purpose one.

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

public static Int32 BinarySearch<T>(this IList<T> list, T value, IComparer<T> comparer)
{
    #region Parameter Validation

    if (Object.ReferenceEquals(null, list))
        throw new ArgumentNullException("list");
    if (Object.ReferenceEquals(null, comparer))
        throw new ArgumentNullException("comparer");

    #endregion

    Int32 lower = 0;
    Int32 upper = list.Count - 1;

    while (lower <= upper)
    {
        Int32 middle = (lower + upper) / 2;
        Int32 comparisonResult = comparer.Compare(value, list[middle]);
        if (comparisonResult == 0)
            return middle;
        else if (comparisonResult < 0)
            upper = middle - 1;
        else
            lower = middle + 1;
    }

    return -1;
}

This of course assumes that the list in question is already sorted, according to the same rules that the comparer will use.

link|flag
Does IList<T> have a Count method? I don't see it in the docs. – Peter Ruderman Jun 8 at 21:26
IList<T> has a Count property msdn.microsoft.com/en-us/library/… – Bryce Kahle Jun 8 at 21:30
Properties are at the bottom of the page. – Meta-Knight Jun 8 at 21:33
1  
IList<T> by itself does not have a Count property, but it requires ICollection<T> to be implemented, which does. – Lasse V. Karlsen Jun 8 at 21:37
It's inherited from ICollection<T> (which makes sense), but my version of MSDN doesn't show inherited properties and methods (which doesn't make so much sense). ;) – Peter Ruderman Jun 8 at 21:37
show 3 more comments
vote up 7 vote down

I like the solution with the extension method. However, a bit of warning is in order.

This is effectively Jon Bentley's implementation from his book Programming Pearls and it suffers modestly from a bug with numeric overflow that went undiscovered for 20 years or so. The (upper+lower) can overflow Int32 if you have a large number of items in the IList. A resolution to this is to do the middle calculation a bit differently using a subtraction instead; Middle = Lower + (Upper - Lower) / 2;

Bentley also warned in Programming Pearls that while the binary search algorithm was published in 1946 and the first correct implementation wasn't published until 1962.

http://en.wikipedia.org/wiki/Binary_search#Numerical_difficulties

link|flag
That's exactly why I wanted to use a build-in implementation - it's quite hard to get Binary Search right. +1 – Daniel Brückner Jun 9 at 12:39
vote up 4 vote down

You are going to have a couple of problems binary-searching an IList<T>, First ,like you mentioned, the BinarySearch method on the List<T> is not a member of the IList<T> interface. Second, you have no way of sorting the list prior to searching (which you must do for a binary search to work).

I think your best bet is to create a new List<T>, sort it, and then search. It's not perfect but you don't have to many options if you have an IList<T>.

link|flag
You can assume that the list is sorted. But I assume there is indeed the same problem with sort - how to sort IList<T>? – Daniel Brückner Jun 8 at 21:19
Copying is absolutly no option because it's O(n) so binary search will not make much sense after that... ;) – Daniel Brückner Jun 8 at 21:23
Why would there be no way of sorting? IList<T> allows random access, so as long as you have the ability to compare objects of type T, then you could sort it beforehand. – Bryce Kahle Jun 8 at 21:46
Of course, you can sort IList<T>, but there seems to be no build-in support, too. – Daniel Brückner Jun 8 at 23:00
To sort an IList<T> you can use the sort linq extension method. – Rune FS Jun 9 at 8:48
vote up 0 vote down

Note that while List and IList do not have a BinarySearch method, SortedList does.

link|flag
1  
List<T> has a BinarySearch() method. – Daniel Brückner Jun 8 at 21:36
vote up 0 vote down

If you can use .NET 3.5, you can use the build in Linq extension methods:

using System.Linq;

IList<string> ls = ...;
ls.OrderBy(x => x).ToList().BinarySearch(...)

However, this is really just a slightly different way of going about Andrew Hare's solution.

link|flag
2  
ToList() will copy all items into a new List<T>. Then you just use List<T>.BinarySearch(). Because copying is O(n) it's no option in combination with binary search. – Daniel Brückner Jun 8 at 21:55
vote up 0 vote down

If you need a ready-made implementation for binary search on IList<T>s, Wintellect's Power Collections has one (in Algorithms.cs).

link|flag
vote up 0 vote down

Keep in mind that binary search can be quite inefficient for some list implementations. For example, for a linked list it is O(n) if you implement it correctly, and O(n log n) if you implement it naively.

link|flag

Your Answer

Get an OpenID
or

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