|
RedBlackTreeTFindGreaterThan Method (T)
|
Finds the smallest point in the in the
tree that is greater than (>)
k. In other words, finds a
number stored in the tree that is immediately above
k.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public RedBlackTreeNode<T> FindGreaterThan(
T value
)
Public Function FindGreaterThan (
value As T
) As RedBlackTreeNode(Of T)
Request Example
View SourceParameters
- value
- Type: T
A reference value to be found.
Return Value
Type:
RedBlackTreeNodeT
The node containing an element that is immediately below
value.
See Also