ISearchTree<T>
Interface
Describes data structures used for searching.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Type Parameters:
T
The data type.
Syntax:
C#
public interface ISearchTree<T> : ICollection<T>, IEnumerable<T>, IEnumerable
Derived Classes:
Inherited Members
Properties
Gets the maximal item in the tree.
C#
T Maximum { get; }
The maximum item in the tree.
Gets the smallest item in the tree.
C#
T Minimum { get; }
The smallest item in the tree.
Exceptions:The ISearchTree<T> is empty.
Methods
Performs a depth first traversal on the search tree.
C#
void DepthFirstTraversal(IVisitor<T> visitor)
The visitor to use.
Exceptions:visitor is a null reference (Nothing in Visual Basic).
Returns an enumerator that iterates through the collection.
C#
IEnumerator<T> GetOrderedEnumerator()
IEnumerator<T>
A IEnumerator<T> that can be used to iterate through the collection.