|
RedBlackTreeTGetNextNode Method
|
Gets the node that contains the next in-order value coming
after the value contained in the given node.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public RedBlackTreeNode<T> GetNextNode(
RedBlackTreeNode<T> node
)
Public Function GetNextNode (
node As RedBlackTreeNode(Of T)
) As RedBlackTreeNode(Of T)
Request Example
View SourceParameters
- node
- Type: Accord.CollectionsRedBlackTreeNodeT
The current node.
Return Value
Type:
RedBlackTreeNodeT
The node that contains a value that is immediately greater than
the current value contained in the given
node.
See Also