|
RedBlackTreeTGetPreviousNode Method
|
Gets the node that contains the previous in-order value coming
before the value contained in the given node.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public RedBlackTreeNode<T> GetPreviousNode(
RedBlackTreeNode<T> node
)
Public Function GetPreviousNode (
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 less than
the current value contained in the given
node.
See Also