Is there a binary search implementation in .NET 4?

I am looking for a built-in binary search implementation in .NET 4. Is it there?

+5
source share
5 answers

A class SortedDictionary<K,V>uses a tree, is that what you need?

See this SO answer for a discussion.

+7
source

- List . BinarySearch . , , BinarySearch . , (~ operator) , , ( , ).

+2

C5:

TreeDictionary ISortedDictionary ( , ) , . , O (logn). , , .

+2

http://code.google.com/p/self-balancing-avl-tree/. AVL , SortedDictinary SortedMultiDictionary AVL.

0

All Articles