My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for

Contents

Complete wiki list

SplayTree  
The Splay Tree data structure
Updated Aug 12, 2009 by hus...@gmail.com
[Serializable]
public class SplayTree<TKey, TValue> : BinarySearchTreeBase<TKey, TValue>
{
    // Methods
    public SplayTree();
    public SplayTree(IComparer<TKey> comparer);
	
    // With All Of BinarySearchTreeBase Members : Contains, Add, Remove, etc.

    // Properties
    public override KeyValuePair<TKey, TValue> Maximum { get; }
    public override KeyValuePair<TKey, TValue> Minimum { get; }
}

Sign in to add a comment
Powered by Google Project Hosting