Class ST<Key extends Comparable<Key>,Value>
- Object
-
- ST<Key,Value>
-
- Type Parameters:
Key
- the generic type of keys in this symbol tableValue
- the generic type of values in this symbol table
- All Implemented Interfaces:
Iterable<Key>
public class ST<Key extends Comparable<Key>,Value> extends Object implements Iterable<Key>
TheST
class represents an ordered symbol table of generic key-value pairs. It supports the usual put, get, contains, remove, size, and is-empty methods. It also provides ordered methods for finding the minimum, maximum, floor, and ceiling. It also provides a keys method for iterating over all the keys. A symbol table implements the associative array abstraction: when associating a value with a key that is already in the symbol table, the convention is to replace the old value with the new value. UnlikeMap
, this class uses the convention that values cannot benull
; setting the value associated with a key tonull
is equivalent to deleting the key from the symbol table.This implementation uses a balanced binary search tree. It requires that the key type implements the
Comparable
interface and calls thecompareTo()
and method to compare two keys. It does not call eitherequals()
orhashCode()
. The put, contains, remove, minimum, maximum, ceiling, and floor operations each take logarithmic time in the worst case. The size, and is-empty operations take constant time. Construction takes constant time.For additional documentation, see Section 4.4 of Computer Science: An Interdisciplinary Approach by Robert Sedgewick and Kevin Wayne.
- Author:
- Robert Sedgewick, Kevin Wayne
-
-
Constructor Summary
Constructors Constructor Description ST()
Initializes an empty symbol table.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Key
ceiling(Key key)
Returns the smallest key in this symbol table greater than or equal tokey
.boolean
contains(Key key)
Returns true if this symbol table contain the given key.Key
floor(Key key)
Returns the largest key in this symbol table less than or equal tokey
.Value
get(Key key)
Returns the value associated with the given key in this symbol table.boolean
isEmpty()
Returns true if this symbol table is empty.Iterable<Key>
keys()
Returns all keys in this symbol table in ascending order.static void
main(String[] args)
Unit tests theST
data type.Key
max()
Returns the largest key in this symbol table.Key
min()
Returns the smallest key in this symbol table.void
put(Key key, Value val)
Inserts the specified key-value pair into the symbol table, overwriting the old value with the new value if the symbol table already contains the specified key.void
remove(Key key)
Removes the specified key and its associated value from this symbol table (if the key is in this symbol table).int
size()
Returns the number of key-value pairs in this symbol table.-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
get
public Value get(Key key)
Returns the value associated with the given key in this symbol table.- Parameters:
key
- the key- Returns:
- the value associated with the given key if the key is in this symbol table;
null
if the key is not in this symbol table - Throws:
IllegalArgumentException
- ifkey
isnull
-
put
public void put(Key key, Value val)
Inserts the specified key-value pair into the symbol table, overwriting the old value with the new value if the symbol table already contains the specified key. Removes the specified key (and its associated value) from this symbol table if the specified value isnull
.- Parameters:
key
- the keyval
- the value- Throws:
IllegalArgumentException
- ifkey
isnull
-
remove
public void remove(Key key)
Removes the specified key and its associated value from this symbol table (if the key is in this symbol table).- Parameters:
key
- the key- Throws:
IllegalArgumentException
- ifkey
isnull
-
contains
public boolean contains(Key key)
Returns true if this symbol table contain the given key.- Parameters:
key
- the key- Returns:
true
if this symbol table containskey
andfalse
otherwise- Throws:
IllegalArgumentException
- ifkey
isnull
-
size
public int size()
Returns the number of key-value pairs in this symbol table.- Returns:
- the number of key-value pairs in this symbol table
-
isEmpty
public boolean isEmpty()
Returns true if this symbol table is empty.- Returns:
true
if this symbol table is empty andfalse
otherwise
-
keys
public Iterable<Key> keys()
Returns all keys in this symbol table in ascending order.To iterate over all the keys in the symbol table named
st
, use the foreach notation:for (Key key : st.keys())
.- Returns:
- all keys in this symbol table
-
min
public Key min()
Returns the smallest key in this symbol table.- Returns:
- the smallest key in this symbol table
- Throws:
NoSuchElementException
- if this symbol table is empty
-
max
public Key max()
Returns the largest key in this symbol table.- Returns:
- the largest key in this symbol table
- Throws:
NoSuchElementException
- if this symbol table is empty
-
ceiling
public Key ceiling(Key key)
Returns the smallest key in this symbol table greater than or equal tokey
.- Parameters:
key
- the key- Returns:
- the smallest key in this symbol table greater than or equal to
key
- Throws:
NoSuchElementException
- if there is no such keyIllegalArgumentException
- ifkey
isnull
-
floor
public Key floor(Key key)
Returns the largest key in this symbol table less than or equal tokey
.- Parameters:
key
- the key- Returns:
- the largest key in this symbol table less than or equal to
key
- Throws:
NoSuchElementException
- if there is no such keyIllegalArgumentException
- ifkey
isnull
-
main
public static void main(String[] args)
Unit tests theST
data type.- Parameters:
args
- the command-line arguments
-
-