org.processmining.plugins.replayer.util
Class BST

java.lang.Object
  extended by org.processmining.plugins.replayer.util.BST

public class BST
extends java.lang.Object


Field Summary
protected  org.processmining.plugins.replayer.util.BST.BSTnode current
           
protected static boolean DEBUG
           
protected  org.processmining.plugins.replayer.util.BST.BSTnode root
           
protected static boolean UNIQUE
           
 
Constructor Summary
BST()
           
 
Method Summary
 double avgDepth()
           
 void clear()
           
 void delete(java.lang.Comparable value)
           
 int height()
           
 void insert(java.lang.Comparable value)
           
 void pretty()
           
 int size()
           
 void walk()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

root

protected org.processmining.plugins.replayer.util.BST.BSTnode root

current

protected org.processmining.plugins.replayer.util.BST.BSTnode current

DEBUG

protected static final boolean DEBUG
See Also:
Constant Field Values

UNIQUE

protected static final boolean UNIQUE
See Also:
Constant Field Values
Constructor Detail

BST

public BST()
Method Detail

size

public int size()

height

public int height()

avgDepth

public double avgDepth()

clear

public void clear()

insert

public void insert(java.lang.Comparable value)

delete

public void delete(java.lang.Comparable value)

walk

public void walk()

pretty

public void pretty()