Click or drag to resize
AATreeT Class
Arne Andersson Self Balancing Binary Search Tree.
Inheritance Hierarchy
SystemObject
  BioAATreeT

Namespace: Bio
Assembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax
public class AATree<T>

Type Parameters

T
Type of elements to store.

The AATreeT type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCount
Gets number of elements present in the AATree.
Public propertyDefaultValue
Gets or sets Default value. By default this is set to default value of T.
Top
Methods
  NameDescription
Public methodAdd
Tries to add specified value to the AATree. If the value is already present in the tree then this method returns without adding.
Public methodContains
Verifies whether the specified value is present in the tree or not.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInOrderTraversal
Gets values using InOrder traversal.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPostOrderTraversal
Gets values using PostOrder traversal.
Public methodPreOrderTraversal
Gets values using PreOrder traversal.
Public methodRemove
Tries to remove specified value from the AATree.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTrySearch
Searches for the specified value in the AATree. If found returns the value in actualValue out param, else this param contains DefaultValue.
Top
See Also

Reference