goog.structs.AvlTree.Node |
value
: T
Value to store in the node.
|
opt_parent
: goog.structs.AvlTree.Node.<T>>
Optional parent node.
|
Returns true iff the specified node has a parent and is the left child of
its parent.
Returns: boolean
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: boolean
Whether the specified node has a parent and is the right
child of its parent.
|
code » |
![]()
The number of nodes in the subtree rooted at this node.
|
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 » | |
![]()
The value stored by the node.
|
Code » |