Skip to content
Riaan Hanekom edited this page Mar 10, 2013 · 3 revisions

The ISearchTree Interface

public interface ISearchTree<TKey, TValue> : IVisitableDictionary<TKey, TValue>
{
    // Properties
    KeyValuePair<TKey, TValue> Maximum { get; }
    KeyValuePair<TKey, TValue> Minimum { get; }
}

Provides common operations for search trees.

Data Structures Implementing this interface :