Find

Searches for the occurrence of a specified value in a red–black tree.

CRedBlackTreeNode<T>* Find(
    value     // the search value
   );

Parameters

value

[in]  The searched value.

Return Value

Returns a pointer to the found node containing the search value on success, or NULL otherwise.