1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
| package trie;
import java.util.LinkedList; import java.util.Queue;
public class TrieST<V> {
private static int R=65293;
private Node root;
private static class Node{ private Object val; private Node[] next=new Node[R]; }
public V get(String key) { Node x=get(root,key,0); if(x==null) { return null; } return (V) x.val; }
public 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); } public void put(String key,V val) { root=put(root,key,val,0); } public 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; } public int size() { return size(root); } public int size(Node x) { if(x==null) { return 0; } int cnt=0; if(x.val!=null) cnt++; for(char c=0;c<R;c++) { cnt+=size(x.next[c]); } return cnt; } public Iterable<String> keys() { return keysWithPrefix(""); } public Iterable<String> keysWithPrefix(String pre) { Queue<String> q=new LinkedList<>(); collect(get(root,pre,0),pre,q); return q; } private void collect(Node x,String pre,Queue<String>q) { if(x==null) { return; } if(x.val!=null) { q.add(pre); } for(char c=0;c<R;c++) { collect(x.next[c],pre+c,q); } }
public Iterable<String> keysThatMatch(String pat) { Queue<String>q=new LinkedList<>(); collect(root,"",pat,q); return q; } private void collect(Node x,String pre,String pat,Queue<String> q) { int d=pre.length(); if(x==null) { return; } if(x.val!=null&&d==pat.length()){ q.add(pre); } if(d==pat.length()) { return; } char next=pat.charAt(d); for(char c=0;c<R;c++) { if(next=='.'||next==c) { collect(x.next[c],pre+c,pat,q); } } }
public String longestPrefixOf(String s) { int length=search(root,s,0,0); return s.substring(0,length); } public int search(Node x,String s,int length,int d) { if(x==null) { return length; } if(x.val!=null) { length=d; } if(d==s.length()) { return s.length(); } char c=s.charAt(d); return search(x.next[c],s,length,d+1); }
public void delete(String key) { root=delete(root,key,0); } public 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(char c=0;c<R;c++) { if(x.next[c]!=null) { return x; } } return null; } }
|