| 
001002
 003
 004
 005
 006
 007
 008
 009
 010
 011
 012
 013
 014
 015
 016
 017
 018
 019
 020
 021
 022
 023
 024
 025
 026
 027
 028
 029
 030
 031
 032
 033
 034
 035
 036
 037
 038
 039
 040
 041
 042
 043
 044
 045
 046
 047
 048
 049
 050
 051
 052
 053
 054
 055
 056
 057
 058
 059
 060
 061
 062
 063
 064
 065
 066
 067
 068
 069
 070
 071
 072
 073
 074
 075
 076
 077
 078
 079
 080
 081
 082
 083
 084
 085
 086
 087
 088
 089
 090
 091
 092
 093
 094
 095
 096
 097
 098
 099
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 
 | package algs52; // section 5.2
import stdlib.*;
import algs13.Queue;
/* ***********************************************************************
 *  Compilation:  javac TrieST.java
 *  Execution:    java TrieST < words.txt
 *  Dependencies: StdIn.java
 *
 *  A string symbol table for ASCII strings, implemented using a 256-way trie.
 *
 *  % java TrieST < shellsST.txt
 *  by 4
 *  sea 6
 *  sells 1
 *  she 0
 *  shells 3
 *  shore 7
 *  the 5
 *
 *************************************************************************/
@SuppressWarnings({"unchecked"})
public class XTrieSTWithCasts<V> {
  private static final int R = 256;        // extended ASCII
  private Node root = new Node();
  private static class Node {
    public Node() { }
    public Object val;
    public final Node[] next = new Node[R];
  }
  /* **************************************************
   * Is the key in the symbol table?
   ****************************************************/
  public boolean contains(String key) {
    return get(key) != null;
  }
  public V get(String key) {
    Node x = get(root, key, 0);
    if (x == null) return null;
    return (V) x.val;
  }
  private Node get(Node x, String key, int d) {
    if (x == null) return null;
    if (d == key.length()) return x;
    char c = key.charAt(d);
    return get(x.next[c], key, d+1);
  }
  /* **************************************************
   * Insert key-value pair into the symbol table.
   ****************************************************/
  public void put(String key, V val) {
    root = put(root, key, val, 0);
  }
  private Node put(Node x, String key, V val, int d) {
    if (x == null) x = new Node();
    if (d == key.length()) {
      x.val = val;
      return x;
    }
    char c = key.charAt(d);
    x.next[c] = put(x.next[c], key, val, d+1);
    return x;
  }
  // find the key that is the longest prefix of s
  public String longestPrefixOf(String query) {
    int length = longestPrefixOf(root, query, 0, 0);
    return query.substring(0, length);
  }
  // find the key in the subtrie rooted at x that is the longest
  // prefix of the query string, starting at the dth character
  private int longestPrefixOf(Node x, String query, int d, int length) {
    if (x == null) return length;
    if (x.val != null) length = d;
    if (d == query.length()) return length;
    char c = query.charAt(d);
    return longestPrefixOf(x.next[c], query, d+1, length);
  }
  public Iterable<String> keys() {
    return keysWithPrefix("");
  }
  public Iterable<String> keysWithPrefix(String prefix) {
    Queue<String> queue = new Queue<>();
    Node x = get(root, prefix, 0);
    collect(x, prefix, queue);
    return queue;
  }
  private void collect(Node x, String key, Queue<String> queue) {
    if (x == null) return;
    if (x.val != null) queue.enqueue(key);
    for (int c = 0; c < R; c++)
      collect(x.next[c], key + (char) c, queue);
  }
  public Iterable<String> keysThatMatch(String pat) {
    Queue<String> q = new Queue<>();
    collect(root, "", pat, q);
    return q;
  }
  public void collect(Node x, String prefix, String pat, Queue<String> q) {
    if (x == null) return;
    if (prefix.length() == pat.length() && x.val != null) q.enqueue(prefix);
    if (prefix.length() == pat.length()) return;
    char next = pat.charAt(prefix.length());
    for (int c = 0; c < R; c++)
      if (next == '.' || next == c)
        collect(x.next[c], prefix + (char) c, pat, q);
  }
  public void delete(String key) {
    root = delete(root, key, 0);
  }
  private Node delete(Node x, String key, int d) {
    if (x == null) return null;
    if (d == key.length()) x.val = null;
    else {
      char c = key.charAt(d);
      x.next[c] = delete(x.next[c], key, d+1);
    }
    if (x.val != null) return x;
    for (int c = 0; c < R; c++)
      if (x.next[c] != null)
        return x;
    return null;
  }
  // test client
  public static void main(String[] args) {
    StdIn.fromFile("data/shellsST.txt");
    // build symbol table from standard input
    XTrieSTWithCasts<Integer> st = new XTrieSTWithCasts<>();
    for (int i = 0; !StdIn.isEmpty(); i++) {
      String key = StdIn.readString();
      st.put(key, i);
    }
    // print results
    for (String key : st.keys()) {
      StdOut.println(key + " " + st.get(key));
    }
  }
}
 |