structure
Class BinarySearchTree

java.lang.Object
  extended by structure.AbstractStructure
      extended by structure.BinarySearchTree
All Implemented Interfaces:
OrderedStructure, Structure
Direct Known Subclasses:
SplayTree

public class BinarySearchTree
extends AbstractStructure
implements OrderedStructure

A binary search tree structure. This structure maintains data in an ordered tree. It does not keep the tree balanced, so performance may degrade if the tree height is not optimal.

See Also:
SplayTree, BinaryTree

Field Summary
protected  int count
          The number of nodes in the tree
protected  java.util.Comparator ordering
          The ordering used on this search tree.
protected  BinaryTree root
          A reference to the root of the tree
 
Constructor Summary
BinarySearchTree()
          Constructs a binary search tree with no data
BinarySearchTree(java.util.Comparator alternateOrder)
          Constructs a binary search tree with no data
 
Method Summary
 void add(java.lang.Object value)
          Add a (possibly duplicate) value to binary search tree
 void clear()
          Removes all data from the binary search tree
 boolean contains(java.lang.Object value)
          Determines if the binary search tree contains a value
 java.lang.Object get(java.lang.Object value)
          Returns reference to value found within three.
 boolean isEmpty()
          Checks for an empty binary search tree
 java.util.Iterator iterator()
          Returns an iterator over the binary search tree.
protected  BinaryTree locate(BinaryTree root, java.lang.Object value)
           
protected  BinaryTree predecessor(BinaryTree root)
           
 java.lang.Object remove(java.lang.Object value)
          Remove an value "equals to" the indicated value.
protected  BinaryTree removeTop(BinaryTree topNode)
           
 int size()
          Determines the number of data values within the tree
protected  BinaryTree successor(BinaryTree root)
           
 java.lang.String toString()
          Returns a string representing tree
 
Methods inherited from class structure.AbstractStructure
elements, hashCode, values
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface structure.Structure
elements, values
 

Field Detail

root

protected BinaryTree root
A reference to the root of the tree


count

protected int count
The number of nodes in the tree


ordering

protected java.util.Comparator ordering
The ordering used on this search tree.

Constructor Detail

BinarySearchTree

public BinarySearchTree()
Constructs a binary search tree with no data

Postcondition:
Constructs an empty binary search tree

BinarySearchTree

public BinarySearchTree(java.util.Comparator alternateOrder)
Constructs a binary search tree with no data

Postcondition:
Constructs an empty binary search tree
Method Detail

isEmpty

public boolean isEmpty()
Checks for an empty binary search tree

Specified by:
isEmpty in interface Structure
Overrides:
isEmpty in class AbstractStructure
Returns:
True iff the tree contains no data
Postcondition:
Returns true iff the binary search tree is empty

clear

public void clear()
Removes all data from the binary search tree

Specified by:
clear in interface Structure
Postcondition:
Removes all elements from binary search tree

size

public int size()
Determines the number of data values within the tree

Specified by:
size in interface Structure
Returns:
The number of nodes in the binary search tree
Postcondition:
Returns the number of elements in binary search tree

locate

protected BinaryTree locate(BinaryTree root,
                            java.lang.Object value)
Precondition:
root and value are non-null
Postcondition:
returned: 1 - existing tree node with the desired value, or 2 - the node to which value should be added

predecessor

protected BinaryTree predecessor(BinaryTree root)

successor

protected BinaryTree successor(BinaryTree root)

add

public void add(java.lang.Object value)
Add a (possibly duplicate) value to binary search tree

Specified by:
add in interface Structure
Parameters:
val - A reference to non-null object
Postcondition:
Adds a value to binary search tree

contains

public boolean contains(java.lang.Object value)
Determines if the binary search tree contains a value

Specified by:
contains in interface Structure
Overrides:
contains in class AbstractStructure
Parameters:
val - The value sought. Should be non-null
Returns:
True iff the tree contains a value "equals to" sought value
Postcondition:
Returns true iff val is a value found within the tree

get

public java.lang.Object get(java.lang.Object value)
Returns reference to value found within three. This method can be potentially dangerous if returned value is modified: if modification would change the relation of value to others within the tree, the consistency of the structure is lost Don't modify returned value

Parameters:
val - Value sought from within tree
Returns:
A value "equals to" value sought; otherwise null
Postcondition:
Returns object found in tree, or null

remove

public java.lang.Object remove(java.lang.Object value)
Remove an value "equals to" the indicated value. Only one value is removed, and no guarantee is made concerning which of duplicate values are removed. Value returned is no longer part of the structure

Specified by:
remove in interface Structure
Parameters:
val - Value sought to be removed from tree
Returns:
Actual value removed from tree
Postcondition:
Removes one instance of val, if found

removeTop

protected BinaryTree removeTop(BinaryTree topNode)

iterator

public java.util.Iterator iterator()
Returns an iterator over the binary search tree. Iterator should not be used if tree is modified, as behavior may be unpredicatable Traverses elements using in-order traversal order

Specified by:
iterator in interface Structure
Returns:
An iterator over binary search tree
See Also:
AbstractIterator, Iterator, Enumeration, Structure.elements()
Postcondition:
Returns iterator to traverse BST

toString

public java.lang.String toString()
Returns a string representing tree

Overrides:
toString in class java.lang.Object
Returns:
String representation of tree
Postcondition:
Generates a string representation of the BST