[Overview][Types][Classes][Variables][Index] |
Move data to the nearest right element
Source position: avl_tree.pp line 126
public procedure TAVLTree.MoveDataRightMost( |
var ANode: TAVLTreeNode |
); |
ANode |
|
Node whose data most be moved |
MoveDataRightMost moves the data from the node ANode to the rightmost location relative to Anode. It returns the new node where the data is positioned. The data from the former rightmost node will be switched to ANode.
This operation corresponds to switching the current with the next element in a list.
|
Move data to the nearest left element |