|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectstructure5.AbstractStructure<E>
structure5.RedBlackSearchTree<E>
public class RedBlackSearchTree<E extends Comparable<E>>
Red black trees, are binary trees that guarantee the following three properties.
1. Every child of every leaf is considered black
2. Every red node has two black children
3. Every path from a node to a descendant leaf contains the same
number of black nodes.
These properties ensure that elements can be inserted, deleted, and located in logorithmic time.
Example usage:
To create a red-black tree containing the months of the year and to print out this tree as it grows we could use the following
public static void main(String[] argv){
RedBlackSearchTree test = new RedBlackSearchTree();
//declare an array of months
String[] months = new String[]{"March", "May", "November", "August",
"April", "January", "December", "July",
"February", "June", "October", "September"};
//add the months to the tree and print out the tree as it grows
for(int i=0; i < months.length; i++){
test.add(months[i]);
System.out.println("Adding: " + months[i] + "\n" +test.treeString());
}
}
AVLTree,
SplayTree,
BinaryTree| Constructor Summary | |
|---|---|
RedBlackSearchTree()
Constructs a red-black search tree with no data |
|
| Method Summary | |
|---|---|
void |
add(E value)
Add a (possibly duplicate) value to the red-black tree, and ensure that the resulting tree is a red-black tree. |
void |
clear()
Removes all data from the binary search tree |
boolean |
contains(E value)
Determines if the red-black search tree contains a value |
int |
hashCode()
Returns the hashCode of the value stored by this object. |
boolean |
isEmpty()
Checks for an empty binary search tree |
boolean |
isRedBlack()
Returns true iff this tree is a red-black tree. |
Iterator<E> |
iterator()
Returns an iterator over the red-black search tree. |
E |
remove(E value)
Remove an value "equals to" the indicated value. |
int |
size()
Determines the number of data values within the tree |
String |
toString()
Returns a string representing tree |
String |
treeString()
Returns a (possibly long) string representing tree. |
| Methods inherited from class structure5.AbstractStructure |
|---|
elements, values |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface structure5.Structure |
|---|
elements, values |
| Constructor Detail |
|---|
public RedBlackSearchTree()
| Method Detail |
|---|
public boolean isEmpty()
isEmpty in interface Structure<E extends Comparable<E>>isEmpty in class AbstractStructure<E extends Comparable<E>>public void clear()
clear in interface Structure<E extends Comparable<E>>public int size()
size in interface Structure<E extends Comparable<E>>public void add(E value)
add in interface Structure<E extends Comparable<E>>val - A reference to non-null objectpublic E remove(E value)
remove in interface Structure<E extends Comparable<E>>val - Value sought to be removed from tree
public boolean contains(E value)
contains in interface Structure<E extends Comparable<E>>contains in class AbstractStructure<E extends Comparable<E>>val - The value sought. Should be non-null
public boolean isRedBlack()
public Iterator<E> iterator()
iterator in interface Iterable<E extends Comparable<E>>iterator in interface Structure<E extends Comparable<E>>AbstractIterator,
Iterator,
Enumeration,
Structure.elements()public String treeString()
toString() in that toString() outputs
a single line representation of the contents of the tree.
treeString, however, prints out a graphical
representations of the tree's structure.
public String toString()
toString in class Objectpublic int hashCode()
hashCode in class AbstractStructure<E extends Comparable<E>>
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||