| goog.structs.AvlTree.Node |
|
value
: *
Value to store in the node.
|
|
opt_parent
:
Optional parent node.
|
|
Returns true iff the specified node has a parent and is the left child of
its parent.
Returns:
Whether the specified node has a parent and is the left child of its parent.
|
code » | |
|
Returns true iff the specified node has a parent and is the right child of
its parent.
Returns:
Whether the specified node has a parent and is the right child of its parent.
|
code » |
|
The height of the tree rooted at this node.
|
Code » | |
|
The node's left child. Null if the node does not have a left child.
|
Code » | |
|
The node's parent. Null if the node is the root.
|
Code » | |
|
The node's right child. Null if the node does not have a right child.
|
Code » | |
value
: *
The value stored by the node.
|
Code » |