1 Symbol table
1 application & define
- Key-value pair abstraction.
- ・Insert a value with specified key.
- ・Given a key, search for the corresponding value.
1 application
- Ex. DNS lookup.
- ・Insert domain name with specified IP address.
・Given domain name, find corresponding IP address
web search
2 实现
public class ST<Key extends Comparable<Key>, Value> implements Iterable<Key> {private TreeMap<Key, Value> st;/*** Initializes an empty symbol table.*/public ST() {st = new TreeMap<Key, Value>();}public Value get(Key key) {if (key == null)throw new IllegalArgumentException("calls get() with null key");return st.get(key);}public void put(Key key, Value val) {if (key == null)throw new IllegalArgumentException("calls put() with null key");if (val == null) st.remove(key);else st.put(key, val);}public void delete(Key key) {if (key == null)throw new IllegalArgumentException("calls delete() with null key");st.remove(key);}public boolean contains(Key key) {if (key == null)throw new IllegalArgumentException("calls contains() with null key");return st.containsKey(key);}public int size() {return st.size();}public boolean isEmpty() {return size() == 0;}/*** Returns all keys in this symbol table.* <p>* To iterate over all of the keys in the symbol table named {@code st},* use the foreach notation: {@code for (Key key : st.keys())}.** @return all keys in this symbol table*/public Iterable<Key> keys() {return st.keySet();}/*** Returns all of the keys in this symbol table.* To iterate over all of the keys in a symbol table named {@code st}, use the* foreach notation: {@code for (Key key : st)}.* <p>* This method is provided for backward compatibility with the version from* <em>Introduction to Programming in Java: An Interdisciplinary Approach.</em>** @return an iterator to all of the keys in this symbol table* @deprecated Replaced by {@link #keys()}.*/@Deprecatedpublic Iterator<Key> iterator() {return st.keySet().iterator();}/*** Returns the smallest key in this symbol table.** @return the smallest key in this symbol table* @throws NoSuchElementException if this symbol table is empty*/public Key min() {if (isEmpty())throw new NoSuchElementException("calls min() with empty symbol table");return st.firstKey();}/*** Returns the largest key in this symbol table.** @return the largest key in this symbol table* @throws NoSuchElementException if this symbol table is empty*/public Key max() {if (isEmpty())throw new NoSuchElementException("calls max() with empty symbol table");return st.lastKey();}/*** Returns the smallest key in this symbol table greater than or equal to {@code key}.** @param key the key* @return the smallest key in this symbol table greater than or equal to {@code key}* @throws NoSuchElementException if there is no such key* @throws IllegalArgumentException if {@code key} is {@code null}*/public Key ceiling(Key key) {if (key == null) throw new IllegalArgumentException("argument to ceiling() is null");Key k = st.ceilingKey(key);if (k == null) throw new NoSuchElementException("all keys are less than " + key);return k;}/*** Returns the largest key in this symbol table less than or equal to {@code key}.** @param key the key* @return the largest key in this symbol table less than or equal to {@code key}* @throws NoSuchElementException if there is no such key* @throws IllegalArgumentException if {@code key} is {@code null}*/public Key floor(Key key) {if (key == null)throw new IllegalArgumentException("argument to floor() is null");Key k = st.floorKey(key);if (k == null)throw new NoSuchElementException("all keys are greater than " + key);return k;}/*** Unit tests the {@code ST} data type.** @param args the command-line arguments*/public static void main(String[] args) {ST<String, Integer> st = new ST<String, Integer>();for (int i = 0; !StdIn.isEmpty(); i++) {String key = StdIn.readString();st.put(key, i);}for (String s : st.keys())StdOut.println(s + " " + st.get(s));}}
2 线性表
- 主要API
- get
- put
- delete
- contains
- isEmpty
- Keys() =>遍历键
·
public class SequentialSearchST<Key, Value> {
private int n; // number of key-value pairs
private Node first; // the linked list of key-value pairs
// a helper linked list data type
private class Node {
private Key key;
private Value val;
private Node next;
public Node(Key key, Value val, Node next) {
this.key = key;
this.val = val;
this.next = next;
}
}
/**
* Initializes an empty symbol table.
*/
public SequentialSearchST() {
}
/**
* Returns the number of key-value pairs in this symbol table.
*
* @return the number of key-value pairs in this symbol table
*/
public int size() {
return n;
}
/**
* Returns true if this symbol table is empty.
*
* @return {@code true} if this symbol table is empty;
* {@code false} otherwise
*/
public boolean isEmpty() {
return size() == 0;
}
/**
* Returns true if this symbol table contains the specified key.
*
* @param key the key
* @return {@code true} if this symbol table contains {@code key};
* {@code false} otherwise
* @throws IllegalArgumentException if {@code key} is {@code null}
*/
public boolean contains(Key key) {
if (key == null)
throw new IllegalArgumentException("argument to contains() is null");
return get(key) != null;
}
/**
* Returns the value associated with the given key in this symbol table.
*
* @param key the key
* @return the value associated with the given key if the key is in the symbol table
* and {@code null} if the key is not in the symbol table
* @throws IllegalArgumentException if {@code key} is {@code null}
*/
public Value get(Key key) {
if (key == null)
throw new IllegalArgumentException("argument to get() is null");
for (Node x = first; x != null; x = x.next) {
if (key.equals(x.key))
return x.val;
}
return null;
}
/**
* 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.
* Deletes the specified key (and its associated value) from this symbol table
* if the specified value is {@code null}.
*
* @param key the key
* @param val the value
* @throws IllegalArgumentException if {@code key} is {@code null}
*/
public void put(Key key, Value val) {
if (key == null)
throw new IllegalArgumentException("first argument to put() is null");
if (val == null) {
delete(key);
return;
}
for (Node x = first; x != null; x = x.next) {
if (key.equals(x.key)) {
x.val = val;
return;
}
}
first = new Node(key, val, first);
n++;
}
/**
* Removes the specified key and its associated value from this symbol table
* (if the key is in this symbol table).
*
* @param key the key
* @throws IllegalArgumentException if {@code key} is {@code null}
*/
public void delete(Key key) {
if (key == null)
throw new IllegalArgumentException("argument to delete() is null");
first = delete(first, key);
}
// delete key in linked list beginning at Node x
// warning: function call stack too large if table is large
private Node delete(Node x, Key key) {
if (x == null) return null;
if (key.equals(x.key)) {
n--;
return x.next;
}
x.next = delete(x.next, key);
return x;
}
/**
* Returns all keys in the symbol table as an {@code Iterable}.
* To iterate over all of the keys in the symbol table named {@code st},
* use the foreach notation: {@code for (Key key : st.keys())}.
*
* @return all keys in the symbol table
*/
public Iterable<Key> c() {
Queue<Key> queue = new Queue<Key>();
for (Node x = first; x != null; x = x.next)
queue.enqueue(x.key);
return queue;
}
/**
* Unit tests the {@code SequentialSearchST} data type.
*
* @param args the command-line arguments
*/
public static void main(String[] args) {
SequentialSearchST<String, Integer> st = new SequentialSearchST<String, Integer>();
for (int i = 0; !StdIn.isEmpty(); i++) {
String key = StdIn.readString();
st.put(key, i);
}
for (String s : st.keys())
StdOut.println(s + " " + st.get(s));
}
}
