Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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