算法3.3 二叉查找树

算法意义

对比链表和数组实现的符号表,要实现高效的插入,需要链式结构,但单链表无法实现二分查找,因为后者的高效来自于可以快速通过索引取得任何子数组的中间元素,而链表只能顺序查找.为了将二分查找的高效和链表的灵活性结合,需要复杂的数据结构—二叉查找树

符号表的6种实现

数据结构 实现 优点 缺点
单链表(顺序查找) SequentialSearchST 适合小型问题 对大型表很慢
有序数组(二分查找) BinarySearchST 最优的查找和空间,有序 插入操作很慢
二叉查找树 BST 实现简单,有序 没有性能上界保证,需额外空间
平衡查找树 RedBlackBST 最优的查找,插入,有序 链接需额外空间
散列表 SeparateChainHashST LinearProbingHashST 可快速查找与插入常见类型数据 需计算不同散列,无法有序操作,链接和空结点占空间

二叉查找树的描述

BST时一棵二叉树,每个结点都有一个Comparable的键(以及关联的值),且每个结点的键都大于其左子树的任意结点键而小于(有的书中包含等于)右子树的任意结点的键

API

方法 注释
ST() 创建符号表
void put(Key key, Value val) 存入键值对
Value get(Key key) 获取键key的对应值
void delete(Key key) 删去键值对key
boolean contains(Key key) 判断键是否存在
boolean isEmpty() 表是否为空
int size() 表中键值对数量
Key min() 最小的键
Key max() 最大的键
Key floor(Key key) 小于等于key的最大键
Key ceiling(Key key) 大于等于key的最小键
int rank(Key key) 小于key的键个数
Key select(int k) 排名为k的键

基本实现

  1. import edu.princeton.cs.algs4.StdIn;
  2. import edu.princeton.cs.algs4.StdOut;
  3. public class BST<Key extends Comparable<Key>, Value> {
  4. //内部私有结点类
  5. private class Node{
  6. public Node(Key key, Value val, int N){}
  7. }
  8. //根结点指针
  9. Node root;
  10. //结点个数
  11. private int size(){ return root.N; }//全部节点个数
  12. public int size(Node x){//指定子树节点个数
  13. if (x == null) return 0;
  14. else return x.N;
  15. }
  16. //查询键所对应的值
  17. public Value get(Key key){}
  18. private Value gethelp(Node root, Key key){ }
  19. //插入/更新键值对
  20. public void put(Key key, Value val){}
  21. private Node puthelp(Node root, Key key, Value val){ }
  22. //或许子树上最大/最小结点
  23. private Node getmin(Node root){}
  24. private Node getmax(Node root){}
  25. //删除以及相关函数
  26. private Node deletemin(Node root){}
  27. public Value delete(Key key){}
  28. private Node deletehelp(Node root, Key key){}
  29. //返回小于等于key的最大键(向下取整)
  30. public Key floor(Key key){}
  31. private Node floorhelp(Node root, Key key){ }
  32. //返回大于等于key的最小件(向上取整)
  33. public Key ceiling(Key key){ }
  34. private Node ceilinghelp(Node root, Key key){ }
  35. //排名:获取小于指定键的键数,即为指定键的名词,如size = 3,则最大键名词为2.
  36. public int rank(Key key){ }
  37. private int rankhelp(Node root, Key key){}
  38. //选择:获取排名为k的键,即恰好有k个小于它的键
  39. public Key select(int rank){}
  40. private Node selecthelp(Node root, int rank){}
  41. //中序遍历,分层次打印
  42. private void printhelp(Node root, int level){ }
  43. public void print(){}
  44. //测试用例
  45. public static void main(String[] args){
  46. BST<String, Integer> tree = new BST<>();
  47. while (!StdIn.isEmpty()){
  48. tree.put(StdIn.readString(), StdIn.readInt());
  49. }
  50. tree.print();
  51. }
  52. }

数据表示

  1. private class Node{
  2. Key key;
  3. Value val;
  4. Node lc;
  5. Node rc;
  6. int N;
  7. public Node(Key key, Value val, int N){
  8. this.key = key;
  9. this.val = val;
  10. this.N = N;
  11. }
  12. }
  13. Node root;
  14. private int size(){ return root.N; }//全部节点个数
  15. public int size(Node x){//指定子树节点个数
  16. if (x == null) return 0;
  17. else return x.N;
  18. }
  • 数据结构选择具有两个链接和一对键值对以及一个结点计数器(N)的结点类,对于结点计数器,即以该结点为根结点的子树所具有的结点个数,size()返回值即为N,对任意一个结点x,size(x) = size(x.lc)+size(x.rc)+1
  • 要使用一个针对整棵BST的根结点指针root

BST.jpg

get():查找

  1. public Value get(Key key){ return gethelp(root, key); }
  2. private Value gethelp(Node root, Key key){
  3. if(root == null) return null;
  4. int cmp = key.compareTo(root.key);
  5. if (cmp < 0) return gethelp(root.lc, key);//小于结点键,进入左子树
  6. else if (cmp > 0) return gethelp(root.rc, key);//大于结点键,进入右子树
  7. else return root.val;//相等则返回值
  8. }
  • 查找:若树是空的,返回null;若查找键和根结点键相等,命中,否则就递归地进入子树查找,小于根结点键进入左子树,反之进入右子树

put():插入

  1. public void put(Key key, Value val){
  2. root = puthelp(root, key, val);
  3. }
  4. private Node puthelp(Node root, Key key, Value val){
  5. if (root == null) return new Node(key, val, 1);
  6. int cmp = key.compareTo(root.key);
  7. //小于结点键,进入左子树
  8. if (cmp < 0) root.lc = puthelp(root.lc, key, val);
  9. //大于结点键,进入右子树
  10. else if (cmp > 0) root.rc = puthelp(root.rc, key, val);
  11. else root.val = val;
  12. root.N = size(root.lc)+size(root.rc)+1;
  13. return root;//返回插入结点后的子树(结点)
  14. }
  • 插入键值对的思想和查找类似,但注意如果发现表中已经有待插键,则直接更新值
  • root.N也要随之更新, root.N = size(root.lc)+size(root.rc)+1;

有序性有关的方法和删除操作

getmin()/getmax():获得最大键和最小键

  1. private Node getmin(Node root){
  2. if (root.lc == null) return root;
  3. return getmin(root.lc);
  4. }
  5. private Node getmax(Node root){
  6. if (root.rc == null) return root;
  7. return getmax(root.rc);
  8. }
  • 最大键沿着根结点右侧链接不断向下到右侧链接到头,最大键就是此结点的键,最小键类似

ceiling()/floor():向上取整和向下取整

  1. //返回小于等于key的最大键(向下取整)
  2. public Key floor(Key key){
  3. Node floorNode = floorhelp(root, key);
  4. if (floorNode == null) return null;
  5. else return floorNode.key;
  6. }
  7. private Node floorhelp(Node root, Key key){
  8. if (root == null) return null;
  9. int cmp = root.key.compareTo(key);
  10. if (cmp == 0) return root;//父结点键值恰好等于key,返回key
  11. if (cmp < 0) return floorhelp(root.lc, key);//若key小于父结点键值,只可能出现在左子树
  12. //只有右子树中存在小于等于key的结点,小于等于key的最大键才会出现在右子树,因为之后的cmp始终>0,不断进入右子树,最终返回null
  13. //否则满足条件的就是根结点
  14. Node temp = floorhelp(root.rc, key);
  15. if (temp != null) return temp;
  16. else return root;
  17. }
  18. //返回大于等于key的最小件(向上取整)
  19. public Key ceiling(Key key){
  20. Node ceilingNode = ceilinghelp(root, key);
  21. if (ceilingNode == null) return null;
  22. else return ceilingNode.key;
  23. }
  24. private Node ceilinghelp(Node root, Key key){
  25. if (root == null) return null;
  26. int cmp = key.compareTo(root.key);
  27. if (cmp == 0) return root;
  28. if (cmp > 0) return ceilinghelp(root.rc, key);
  29. Node temp = ceilinghelp(root.lc, key);
  30. if (temp != null) return temp;
  31. else return root;
  32. }
  • 向下取整,给定key小于root.key,则小于等于key的最大键只能出现在左子树;当key大于root.key时,只有root的右子树中存在小于等于key的结点时,小于等于key的最大键才会出现在右子树中,否则根结点就是小于等于key的最大结点.
  • 向上取整:同上

select():选择

  1. //选择:获取排名为k的键,即恰好有k个小于它的键
  2. public Key select(int rank){
  3. Node selectNode = selecthelp(root, rank);
  4. if (selectNode == null) return null;
  5. return selectNode.key;
  6. }
  7. private Node selecthelp(Node root, int rank){
  8. if (root == null) return null;
  9. int r = size(root.lc);
  10. if (r == rank) return root;
  11. else if (r > rank) return selecthelp(root.lc, rank);
  12. else return selecthelp(root.rc, rank-r-1);
  13. }
  • 当给定rank(排名,小于查找键的键个数)等与size(root.lc)时,root.key即为查找键,若小于,进入左子树,若大于进入右子树,但进入右子树时,由于size和rank的区别,rank要改变为rank-size(root.lc)-1,可以理解为砍去左子树和父结点后的select()

BST.select.jpg

rank():排名

  1. //排名:获取小于指定键的键数,即为指定键的名次,如size=3,则最大键名次为2
  2. public int rank(Key key){ return rankhelp(root, key); }
  3. private int rankhelp(Node root, Key key){
  4. if (root == null) return 0;
  5. int cmp = key.compareTo(root.key);
  6. if (cmp == 0) return size(root.lc);
  7. else if (cmp < 0) return rankhelp(root.lc, key);
  8. else return (root.lc.N + 1 + rankhelp(root.rc, key));
  9. }
  • 当给定键和根结点键相等,返回左子树结点数;若给定结点小于根结点,则进入左子树递归;当大于根结点,则进入右子树,同时返回值上要加rc.lc.size()+1

delelemin():删除指定树最小键

  1. private Node deletemin(Node root){
  2. if (root == null) return null;
  3. if (root.lc == null) return root.rc;
  4. root.lc = deletemin(root.lc);
  5. root.N--;
  6. return root;
  7. }
  • 删除最小键,找最小键和getmin()一样,但找到后,需要将根结点的左子树设为返回值(即删除最小结点后的左子树),且N—.

delete():删除指定键值对

  1. public Value delete(Key key){
  2. Value temp = get(key);
  3. //当键值对存在时再执行删除
  4. if(temp !=null) root = deletehelp(root, key);
  5. return temp;
  6. }
  7. private Node deletehelp(Node root, Key key){
  8. if (root == null) return null;
  9. int cmp = key.compareTo(root.key);
  10. if (cmp < 0) root.lc = deletehelp(root.lc, key);
  11. else if (cmp > 0) root.rc = deletehelp(root.rc, key);
  12. else{//找到待删除结点
  13. if (root.rc == null) root = root.lc;
  14. if (root.lc == null) root = root.rc;//单孩子结点
  15. Node temp = root;
  16. root = getmin(root.rc);//用待删结点右子树最大结点作为新结点
  17. root.rc = deletemin(root.rc);//新结点右子树即剔除原右子树最大结点后子树
  18. root.lc = temp.lc;//新结点左子树为待删结点左子树,无改变
  19. }
  20. root.N--;
  21. return root;//返回删除结点后的子树
  22. }

删除结点需要先找到指定键值对,有三种情况:

  1. 结点无右子树,只需root = root.lc
  2. 结点无左子树,只需root = root.rc
  3. 结点有两个子树,这是只需要让其位置被右子树最小结点代替(选左子树最大结点在某些规定可有重复键的二叉树中,不满足左结点恒小的定义)
  • 将指向待删结点root的引用保存为temp
  • 将root指向getmin(root.rc)
  • root.lc = t.lc
  • root.rc = deletemin(t.rc)
  • N—

与C++实现的对比

  1. Node *temp = getmin(root->rc());
  2. root->setval() = temp->val();
  3. root->setkey() = temp->key();
  4. root->setright() = deletemin(root->rc());
  5. delete temp;

C++版本采用赋值法,找到右子树最小结点后将键值对赋值给root,然后删除此结点.

print():中序遍历打印

  1. //中序遍历,分层次打印
  2. private void printhelp(Node root, int level){
  3. if (root == null) return;
  4. printhelp(root.lc, level+1);
  5. for (int i = 0; i<level ; i++) StdOut.print(" ");
  6. StdOut.println(root.key);
  7. printhelp(root.rc, level+1);
  8. }
  9. public void print(){
  10. if (root == null) {
  11. StdOut.println("the BST is empty");
  12. return;
  13. }
  14. printhelp(root, 1);
  15. }
  • 遍历分三种:前序,中序,后序,要切换打印方式,只需要调整printhelp(root.lc, level+1),StdOut.println(root.key),printhelp(root.rc, level+1)的顺序
  • 对BST,中序遍历结果即为从小到大的顺序排列

性能分析

算法(数据结构) 最坏查找 最坏插入 平均查找 平均插入 是否有序
顺序查找(无序链表) N N N/2 N
二分查找(有序数组) lgN N lgN N/2
二叉树查找(BST) N N 1.39lgN 1.39lgN
  • BST的基本操作性能依赖于其中的键分组足够随机(平衡)以消除长路径