Tree::Successor
Defined in:
Returns a boolean value indicating whether one node is a successor of another.
TSTree.h
Prototype
bool Successor(const Tree<type> *node) const;
Description
The Successor
function returns true
if the node specified by the node
parameter is a successor of the node for which the function is called. If the node is not a successor, this function returns false
.
See Also