Package | Description |
---|---|
net.sf.joafip.redblacktree.service |
Modifier and Type | Method and Description |
---|---|
IRBTNode<E> |
RedBlackTree.deleteByIndex(int index)
delete a node at position
after deletion the node to delete is in detached to the tree state |
void |
RedBlackTree.insertAfter(IRBTNode<E> nodeToInsert,
int index)
insert a node after the node at position, the inserted node index will be
the insert position + 1
|
void |
RedBlackTree.insertBefore(IRBTNode<E> nodeToInsert,
int index)
insert a node before the node at position, the inserted node index will
be the insert position
|
IRBTNode<E> |
RedBlackTree.nodeAtIndex(int index)
to obtains node at position in the sorted list view of this tree
|
Copyright © 2007-2012 Luc Peuvrier. All Rights Reserved.