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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
| public class BST<Key extends Comparable<Key>, Value> {
private Node root;// 根结点
/** * 结点类,用于储存键-值对、左右结点以及结点计数器 size(x)=size(x.left)+size(x.right)+1; * * @author he * */ private class Node { private Key key;// 键 private Value value;// 值 private Node left, right;// 指向左右子树的连接 private int N;// 以该结点为根的子树中的结点数
public Node(Key key, Value value, int N) { this.key = key; this.value = value; this.N = N; }
}
public int size() { return size(root); }
private int size(Node x) { if (x == null) { return 0; } else { return x.N; } }
// 根据键返回值 public Value get(Key key) { return get(root, key); }
// 递归遍历二叉查找树 private Value get(Node x, Key key) { if (x == null) { return null; }
int cmp = key.compareTo(x.key); if (cmp < 0) { return get(x.left, key); } else if (cmp > 0) { return get(x.right, key); } else { return x.value; }
}
// 添加键值对 public void put(Key key, Value value) { root = put(root, key, value); }
// 始终返回的是根结点 private Node put(Node x, Key key, Value value) { // 如果key存在则更新,否则添加新结点 if (x == null) { return new Node(key, value, 1); }
int cmp = key.compareTo(x.key); if (cmp < 0) { x.left = put(x.left, key, value); } else if (cmp > 0) { x.right = put(x.right, key, value); } else { x.value = value; } // 添加新节点后,更新该节点路径上的每个节点的子节点数 x.N = size(x.left) + size(x.right) + 1; return x; }
// 返回最小键 public Key min() { return min(root).key; }
private Node min(Node x) { if (x.left == null) { return x; } return min(x.left); }
// 返回最大键 public Key max() { return max(root).key; }
private Node max(Node x) { if (x.right == null) { return x; } else { return max(x.right); } }
// 向下取整,小于等于key的最大键 public Key floor(Key key) { Node x = floor(root, key); if (x == null) { return null; } else { return x.key; } }
/** * 如果key小于根节点则向下取整一定左子树中, 如果大于根结点,则可能在右子树中,如果没有右子数,则根结点就是满足条件的key */ private Node floor(Node x, Key key) { if (x == null) { return null; }
int cmp = key.compareTo(x.key); // 如果root.key > key,root = root.left if (cmp < 0) { return floor(x.left, key); }
// 如果root.key <= key,root = root.right Node t = floor(x.right, key); // 如果右子节点为空,返回当前节点,否则递归右子节点的结果就是小于等于key的最大值 if (t != null) { return t; } else { return x; }
}
// 向上取整,大于等于key的最小键 public Key ceiling(Key key) { Node x = ceiling(root, key); if (x == null) { return null; } else { return x.key; } }
/** * 求大于key的最小节点 * 如果key4大于根结点3则向上取整一定在右子树中,如果key4小于根结点6,则结果可能在节点6的左子树(假设存在大于key4的子节点) * 所以递归左子树返回时,如果找到了(递归返回非空),则返回结果; 如果没找到返回空,则返回根节点6 */ private Node ceiling(Node x, Key key) { if (x == null) { return null; } int cmp = key.compareTo(x.key); if (cmp == 0) { return x; } // 结果肯定在右子数中 if (cmp > 0) { return ceiling(x.right, key); } // 结果可能在左子树中 Node t = ceiling(x.left, key); // 左子树找到符合条件的结果,返回结果 if (t != null) { return t; } else { // 左子树没找到结果,返回根节点 return x; }
}
// 根据索引查找键 public Key select(int k) { if (k < 0 || k >= size()) throw new IllegalArgumentException(); return select(root, k).key; }
/** * 如果左子树的结点数t大于k,则递归地在左子树中查找排名为k的键; 如果t等于k,在返回根结点的键; * 如果t小于k,递归地在右子树中查找排名为(k-t-1)的键 */ private Node select(Node x, int k) { // 返回排名为k的结点 if (x == null) { return null; } int t = size(x.left); if (t > k) { return select(x.left, k); } else if (t < k) { return select(x.right, k - t - 1); } else { return x; } }
// 根据键返回下下标(排名) public int rank(Key key) { return rank(root, key); }
/** * 如果给定的键和根结点的键相等,返回根节点左子树的结点总数t * 如果给定的键比根结点的键小,递归左子树计算; * 如果给定的键比根结点的键大,返回根结点左子树结点总数t+1+它在右子树的排名 */ private int rank(Node x, Key key) { if (x == null) { return 0; }
int cmp = key.compareTo(x.key); if (cmp < 0) { return rank(x.left, key); } else if (cmp > 0) { return 1 + size(x.left) + rank(x.right, key); } else { return size(x.left); }
}
// 删除最小的结点 public void deleteMin() { root = deleteMin(root); }
private Node deleteMin(Node x) { // 找到最小节点,返回其右子节点代替其原来的位置 if (x.left == null) { return x.right; } // 更新最小节点路径上的节点的左子节点 x.left = deleteMin(x.left); // 更新最小节点路径上的每个节点的子节点数 x.N = size(x.left) + size(x.right) + 1; return x; }
// 删除最大的结点 public void deleteMax() { root = deleteMax(root); }
private Node deleteMax(Node x) { if (x.right == null) { return x.left; } x.right = deleteMax(x.right); x.N = size(x.left) + size(x.right) + 1; return x; }
// 删除指定结点 public void delete(Key key) { root = delete(root, key); }
/** * 递归找到待删节点 * 如果待删节点的子节点存在空节点,由非空的节点代替被删节点 * 如果待删节点的子节点均不为空,则用大于被删节点的子节点中最小的节点代替被删节点 * 更新被删节点路径上的节点 */ private Node delete(Node x, Key key) { if (x == null) { return null; } int cmp = key.compareTo(x.key); // key < node.key,到左子数中继续查找 if (cmp < 0) { // 更新被查找节点路径上的每个节点 x.left = delete(x.left, key); } else if (cmp > 0) { // 更新被查找节点路径上的每个节点 x.right = delete(x.right, key); } else { // 如果被删节点只有一个子节点,该子节点代替其原来的位置(返回子节点) if (x.right == null) return x.left; if (x.left == null) return x.right; // 如果被删节点有两个子节点,比被删节点大的节点中的最小的那个节点代替被删节点的位置 Node t = x; x = min(t.right); // 找到比被删节点大的最小节点 x.right = deleteMin(t.right); // 代替被删节点 x.left = t.left; // 代替被删节点 } x.N = size(x.left) + size(x.right) + 1; // 更新被删节点路径上的节点的的子节点数 return x; // 返回更新后的节点 }
// 遍历树中所有的键,采用中序遍历-->左-根-右 public Iterable<Key> keys() { return keys(min(), max()); }
// 遍历指定范围内的键 public Iterable<Key> keys(Key lo, Key hi) { Queue<Key> queue = new Queue<Key>(); keys(root, queue, lo, hi); return queue; }
private void keys(Node x, Queue<Key> queue, Key lo, Key hi) { if (x == null) { return; }
int cmplo = lo.compareTo(x.key); int cmphi = hi.compareTo(x.key); // 如果根节点大于lo,递归左子数组 if (cmplo < 0) { keys(x.left, queue, lo, hi); } // 左子数组递归完毕,如果根节点在范围内,加入当前节点 if (cmplo <= 0 && cmphi >= 0) { queue.enqueue(x.key); } // 如果根节点小于hi,递归右子数组 if (cmphi > 0) { keys(x.right, queue, lo, hi); }
}
public static void main(String[] args) { BST<String, Integer> bst = new BST<String, Integer>(); bst.put("S", 0); bst.put("E", 1); bst.put("A", 2); bst.put("C", 3); bst.put("R", 4); bst.put("X", 5); bst.put("H", 6); bst.put("M", 7); System.out.println(bst.get("E")); bst.deleteMin(); System.out.println(bst.min()); System.out.println(bst.max()); System.out.println(bst.floor("G")); System.out.println("ceiling:" + bst.ceiling("A")); System.out.println(bst.select(1)); System.out.println(bst.rank("S")); bst.deleteMin(); System.out.println(bst.select(0)); bst.deleteMax(); System.out.println(bst.select(bst.size() - 1)); bst.delete("X"); System.out.println(bst.get("X")); for (String s : bst.keys()) { System.out.print(s + " "); } } }
|