height
nodes up from the current node.
@param height How many nodes up to go. A parameter of 0 means returnthis node, 1 means to return the parent node and so on.
@param root The root node that this Tree is embedded under
@return The ancestor at height height
. It returns nullif it does not exist or the tree implementation does not keep track of parents
|
|