|
RedBlackTreeTRemove Method (T)
|
Removes a node from the tree.
Namespace:
Accord.Collections
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public RedBlackTreeNode<T> Remove(
T item
)
Public Function Remove (
item As T
) As RedBlackTreeNode(Of T)
Request Example
View SourceParameters
- item
- Type: T
The key of the node to be removed.
Return Value
Type:
RedBlackTreeNodeT
A reference to the removed node, if the item was in the tree; otherwise,
null.
See Also