Click or drag to resize
Accord.NET (logo)

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

Parameters

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