AATreeT Class |
Namespace: Bio
The AATreeT type exposes the following members.
Name | Description | |
---|---|---|
AATreeT |
Initializes an instance of AATree class.
| |
AATreeT(IComparerT) |
Initializes an instance of AATree class with specified comparer.
|
Name | Description | |
---|---|---|
Count |
Gets number of elements present in the AATree.
| |
DefaultValue |
Gets or sets Default value.
By default this is set to default value of T.
|
Name | Description | |
---|---|---|
Add |
Tries to add specified value to the AATree.
If the value is already present in the tree then this method returns without adding.
| |
Contains |
Verifies whether the specified value is present in the tree or not.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
InOrderTraversal |
Gets values using InOrder traversal.
| |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
PostOrderTraversal |
Gets values using PostOrder traversal.
| |
PreOrderTraversal |
Gets values using PreOrder traversal.
| |
Remove |
Tries to remove specified value from the AATree.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
TrySearch |
Searches for the specified value in the AATree.
If found returns the value in actualValue out param, else this param contains DefaultValue.
|