CS-Notes/docs/notes/算法.md

2367 lines
76 KiB
Markdown
Raw Normal View History

2019-03-08 21:39:27 +08:00
# 一、前言
- 实现代码:[Algorithm](https://github.com/CyC2018/Algorithm)
- 绘图文件:[ProcessOn](https://www.processon.com/view/link/5a3e4c1ee4b0ce9ffea8c727)
# 二、算法分析
## 数学模型
### 1. 近似
N<sup>3</sup>/6-N<sup>2</sup>/2+N/3 ~ N<sup>3</sup>/6。使用 ~f(N) 来表示所有随着 N 的增大除以 f(N) 的结果趋近于 1 的函数。
### 2. 增长数量级
N<sup>3</sup>/6-N<sup>2</sup>/2+N/3 的增长数量级为 O(N<sup>3</sup>)。增长数量级将算法与它的实现隔离开来一个算法的增长数量级为 O(N<sup>3</sup>) 与它是否用 Java 实现是否运行于特定计算机上无关。
### 3. 内循环
2018-04-06 22:46:59 +08:00
执行最频繁的指令决定了程序执行的总时间,把这些指令称为程序的内循环。
2019-03-08 21:39:27 +08:00
### 4. 成本模型
2018-04-06 22:46:59 +08:00
使用成本模型来评估算法,例如数组的访问次数就是一种成本模型。
2019-03-08 21:39:27 +08:00
## 注意事项
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
### 1. 大常数
2018-08-15 21:44:50 +08:00
在求近似时,如果低级项的常数系数很大,那么近似的结果就是错误的。
2019-03-08 21:39:27 +08:00
### 2. 缓存
2018-08-15 21:44:50 +08:00
计算机系统会使用缓存技术来组织内存,访问数组相邻的元素会比访问不相邻的元素快很多。
2019-03-08 21:39:27 +08:00
### 3. 对最坏情况下的性能的保证
2018-08-15 21:44:50 +08:00
在核反应堆、心脏起搏器或者刹车控制器中的软件,最坏情况下的性能是十分重要的。
2019-03-08 21:39:27 +08:00
### 4. 随机化算法
2018-08-15 21:44:50 +08:00
通过打乱输入,去除算法对输入的依赖。
2019-03-08 21:39:27 +08:00
### 5. 均摊分析
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
将所有操作的总成本除于操作总数来将成本均摊。例如对一个空栈进行 N 次连续的 push() 调用需要访问数组的次数为 N+4+8+16+...+2N=5N-4N 是向数组写入元素的操作次数其余的都是调整数组大小时进行复制需要的访问数组次数均摊后访问数组的平均次数为常数。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
## ThreeSum
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
ThreeSum 用于统计一个数组中和为 0 的三元组数量。
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public interface ThreeSum {
    int count(int[] nums);
2018-06-06 21:06:12 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 1. ThreeSumSlow
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
该算法的内循环为 `if (nums[i] + nums[j] + nums[k] == 0)` 语句总共执行的次数为 N(N-1)(N-2) = N<sup>3</sup>/6-N<sup>2</sup>/2+N/3因此它的近似执行次数为 ~N<sup>3</sup>/6增长数量级为 O(N<sup>3</sup>)。
2018-08-15 21:44:50 +08:00
2018-06-06 21:06:12 +08:00
```java
2019-03-08 21:39:27 +08:00
public class ThreeSumSlow implements ThreeSum {
    @Override
    public int count(int[] nums) {
        int N = nums.length;
        int cnt = 0;
        for (int i = 0; i < N; i++) {
            for (int j = i + 1; j < N; j++) {
                for (int k = j + 1; k < N; k++) {
                    if (nums[i] + nums[j] + nums[k] == 0) {
                        cnt++;
                    }
                }
            }
        }
        return cnt;
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 2. ThreeSumBinarySearch
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
通过将数组先排序对两个元素求和并用二分查找方法查找是否存在该和的相反数如果存在就说明存在三元组的和为 0。
2018-04-06 22:46:59 +08:00
2018-06-06 20:16:19 +08:00
应该注意的是,只有数组不含有相同元素才能使用这种解法,否则二分查找的结果会出错。
2019-03-08 21:39:27 +08:00
该方法可以将 ThreeSum 算法增长数量级降低为 O(N<sup>2</sup>logN)。
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public class ThreeSumBinarySearch implements ThreeSum {
2018-08-28 22:55:26 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int count(int[] nums) {
        Arrays.sort(nums);
        int N = nums.length;
        int cnt = 0;
        for (int i = 0; i < N; i++) {
            for (int j = i + 1; j < N; j++) {
                int target = -nums[i] - nums[j];
                int index = BinarySearch.search(nums, target);
                // 应该注意这里的下标必须大于 j否则会重复统计。
                if (index > j) {
                    cnt++;
                }
            }
        }
        return cnt;
    }
2018-06-06 20:16:19 +08:00
}
```
2018-06-04 14:29:04 +08:00
2018-06-06 20:16:19 +08:00
```java
2019-03-08 21:39:27 +08:00
public class BinarySearch {
2018-08-28 22:55:26 +08:00
2019-03-08 21:39:27 +08:00
    public static int search(int[] nums, int target) {
        int l = 0, h = nums.length - 1;
        while (l <= h) {
            int m = l + (h - l) / 2;
            if (target == nums[m]) {
                return m;
            } else if (target > nums[m]) {
                l = m + 1;
            } else {
                h = m - 1;
            }
        }
        return -1;
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 3. ThreeSumTwoPointer
2018-08-28 22:55:26 +08:00
2019-03-08 21:39:27 +08:00
更有效的方法是先将数组排序然后使用双指针进行查找时间复杂度为 O(N<sup>2</sup>)。
2018-08-28 22:55:26 +08:00
```java
2019-03-08 21:39:27 +08:00
public class ThreeSumTwoPointer implements ThreeSum {
2018-08-28 22:55:26 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int count(int[] nums) {
        int N = nums.length;
        int cnt = 0;
        Arrays.sort(nums);
        for (int i = 0; i < N - 2; i++) {
            int l = i + 1, h = N - 1, target = -nums[i];
            if (i > 0 && nums[i] == nums[i - 1]) continue;
            while (l < h) {
                int sum = nums[l] + nums[h];
                if (sum == target) {
                    cnt++;
                    while (l < h && nums[l] == nums[l + 1]) l++;
                    while (l < h && nums[h] == nums[h - 1]) h--;
                    l++;
                    h--;
                } else if (sum < target) {
                    l++;
                } else {
                    h--;
                }
            }
        }
        return cnt;
    }
2018-08-28 22:55:26 +08:00
}
```
2019-03-08 21:39:27 +08:00
## 倍率实验
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
如果 T(N) ~ aN<sup>b</sup>logN那么 T(2N)/T(N) ~ 2<sup>b</sup>
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
例如对于暴力的 ThreeSum 算法近似时间为 ~N<sup>3</sup>/6。进行如下实验多次运行该算法每次取的 N 值为前一次的两倍统计每次执行的时间并统计本次运行时间与前一次运行时间的比值得到如下结果
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
| N | Time(ms) | Ratio |
| :---: | :---: | :---: |
| 500 | 48 | / |
| 1000 | 320 | 6.7 |
| 2000 | 555 | 1.7 |
| 4000 | 4105 | 7.4 |
| 8000 | 33575 | 8.2 |
| 16000 | 268909 | 8.0 |
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
可以看到T(2N)/T(N) ~ 2<sup>3</sup>因此可以确定 T(N) ~ aN<sup>3</sup>logN。
2018-04-06 22:46:59 +08:00
2018-05-09 17:15:36 +08:00
```java
2019-03-08 21:39:27 +08:00
public class RatioTest {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    public static void main(String[] args) {
        int N = 500;
        int loopTimes = 7;
        double preTime = -1;
        while (loopTimes-- > 0) {
            int[] nums = new int[N];
            StopWatch.start();
            ThreeSum threeSum = new ThreeSumSlow();
            int cnt = threeSum.count(nums);
            System.out.println(cnt);
            double elapsedTime = StopWatch.elapsedTime();
            double ratio = preTime == -1 ? 0 : elapsedTime / preTime;
            System.out.println(N + "  " + elapsedTime + "  " + ratio);
            preTime = elapsedTime;
            N *= 2;
        }
    }
2018-05-09 17:15:36 +08:00
}
```
2018-06-06 20:16:19 +08:00
```java
2019-03-08 21:39:27 +08:00
public class StopWatch {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private static long start;
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    public static void start() {
        start = System.currentTimeMillis();
    }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    public static double elapsedTime() {
        long now = System.currentTimeMillis();
        return (now - start) / 1000.0;
    }
2018-06-06 20:16:19 +08:00
}
```
2019-03-08 21:39:27 +08:00
# 三、排序
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
待排序的元素需要实现 Java  Comparable 接口该接口有 compareTo() 方法,可以用它来判断两个元素的大小关系。
2018-04-06 22:46:59 +08:00
2018-12-30 14:22:17 +08:00
研究排序算法的成本模型时,统计的是比较和交换的次数。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
使用辅助函数 less()  swap() 来进行比较和交换的操作,使得代码的可读性和可移植性更好。
2018-04-06 22:46:59 +08:00
2018-06-06 20:16:19 +08:00
```java
2019-03-08 21:39:27 +08:00
public abstract class Sort<T extends Comparable<T>> {
2018-06-06 20:16:19 +08:00
2019-03-08 21:39:27 +08:00
    public abstract void sort(T[] nums);
2018-06-06 20:16:19 +08:00
2019-03-08 21:39:27 +08:00
    protected boolean less(T v, T w) {
        return v.compareTo(w) < 0;
    }
2018-06-06 20:16:19 +08:00
2019-03-08 21:39:27 +08:00
    protected void swap(T[] a, int i, int j) {
        T t = a[i];
        a[i] = a[j];
        a[j] = t;
    }
2018-06-06 20:16:19 +08:00
}
```
2019-03-08 21:39:27 +08:00
## 选择排序
2018-08-15 21:44:50 +08:00
选择出数组中的最小元素,将它与数组的第一个元素交换位置。再从剩下的元素中选择出最小的元素,将它与数组的第二个元素交换位置。不断进行这样的操作,直到将整个数组排序。
2019-03-08 21:39:27 +08:00
选择排序需要 ~N<sup>2</sup>/2 次比较和 ~N 次交换它的运行时间与输入无关这个特点使得它对一个已经排序的数组也需要这么多的比较和交换操作。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/21550397584141.gif)
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public class Selection<T extends Comparable<T>> extends Sort<T> {
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void sort(T[] nums) {
        int N = nums.length;
        for (int i = 0; i < N - 1; i++) {
            int min = i;
            for (int j = i + 1; j < N; j++) {
                if (less(nums[j], nums[min])) {
                    min = j;
                }
            }
            swap(nums, i, min);
        }
    }
2018-08-15 21:44:50 +08:00
}
```
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
## 冒泡排序
2018-06-06 20:16:19 +08:00
2018-08-15 21:44:50 +08:00
从左到右不断交换相邻逆序的元素,在一轮的循环之后,可以让未排序的最大元素上浮到右侧。
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
在一轮循环中,如果没有发生交换,就说明数组已经是有序的,此时可以直接退出。
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/31550398353573.gif)
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class Bubble<T extends Comparable<T>> extends Sort<T> {
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void sort(T[] nums) {
        int N = nums.length;
        boolean hasSorted = false;
        for (int i = N - 1; i > 0 && !hasSorted; i--) {
            hasSorted = true;
            for (int j = 0; j < i; j++) {
                if (less(nums[j + 1], nums[j])) {
                    hasSorted = false;
                    swap(nums, j, j + 1);
                }
            }
        }
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
## 插入排序
2018-04-06 22:46:59 +08:00
2018-08-15 21:44:50 +08:00
每次都将当前元素插入到左侧已经排序的数组中,使得插入之后左侧数组依然有序。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
对于数组 {3, 5, 2, 4, 1},它具有以下逆序:(3, 2), (3, 1), (5, 2), (5, 4), (5, 1), (2, 1), (4, 1)插入排序每次只能交换相邻元素令逆序数量减少 1因此插入排序需要交换的次数为逆序数量。
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
插入排序的复杂度取决于数组的初始顺序,如果数组已经部分有序了,逆序较少,那么插入排序会很快。
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
- 平均情况下插入排序需要 ~N<sup>2</sup>/4 比较以及 ~N<sup>2</sup>/4 次交换
- 最坏的情况下需要 ~N<sup>2</sup>/2 比较以及 ~N<sup>2</sup>/2 次交换最坏的情况是数组是倒序的
- 最好的情况下需要 N-1 次比较和 0 次交换最好的情况就是数组已经有序了。
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
以下演示了在一轮循环中将元素 2 插入到左侧已经排序的数组中。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/51550399426594.gif)
2018-06-06 20:16:19 +08:00
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class Insertion<T extends Comparable<T>> extends Sort<T> {
2018-06-06 20:16:19 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void sort(T[] nums) {
        int N = nums.length;
        for (int i = 1; i < N; i++) {
            for (int j = i; j > 0 && less(nums[j], nums[j - 1]); j--) {
                swap(nums, j, j - 1);
            }
        }
    }
2018-06-06 20:16:19 +08:00
}
2018-05-09 17:15:36 +08:00
```
2019-03-08 21:39:27 +08:00
## 希尔排序
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
对于大规模的数组插入排序很慢因为它只能交换相邻的元素每次只能将逆序数量减少 1。
2018-06-06 20:16:19 +08:00
2019-03-08 21:39:27 +08:00
希尔排序的出现就是为了解决插入排序的这种局限性它通过交换不相邻的元素每次可以将逆序数量减少大于 1。
2018-06-06 20:16:19 +08:00
2019-03-08 21:39:27 +08:00
希尔排序使用插入排序对间隔 h 的序列进行排序。通过不断减小 h最后令 h=1就可以使得整个数组是有序的。
2018-06-06 20:16:19 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/cb5d2258-a60e-4364-94a7-3429a3064554_200.png)
2018-06-06 20:16:19 +08:00
```java
2019-03-08 21:39:27 +08:00
public class Shell<T extends Comparable<T>> extends Sort<T> {
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void sort(T[] nums) {
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
        int N = nums.length;
        int h = 1;
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
        while (h < N / 3) {
            h = 3 * h + 1; // 1, 4, 13, 40, ...
        }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        while (h >= 1) {
            for (int i = h; i < N; i++) {
                for (int j = i; j >= h && less(nums[j], nums[j - h]); j -= h) {
                    swap(nums, j, j - h);
                }
            }
            h = h / 3;
        }
    }
2018-08-15 21:44:50 +08:00
}
2018-08-15 22:16:30 +08:00
2018-08-15 21:44:50 +08:00
```
2019-03-08 21:39:27 +08:00
希尔排序的运行时间达不到平方级别使用递增序列 1, 4, 13, 40, ...  的希尔排序所需要的比较次数不会超过 N 的若干倍乘于递增序列的长度。后面介绍的高级排序算法只会比希尔排序快两倍左右。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
## 归并排序
2018-08-15 21:44:50 +08:00
归并排序的思想是将数组分成两部分,分别进行排序,然后归并起来。
2019-03-08 21:39:27 +08:00
![](index_files/2_200.png)
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
### 1. 归并方法
2018-08-15 21:44:50 +08:00
归并方法将数组中两个已经排序的部分归并成一个。
```java
2019-03-08 21:39:27 +08:00
public abstract class MergeSort<T extends Comparable<T>> extends Sort<T> {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    protected T[] aux;
2018-08-15 21:44:50 +08:00
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
    protected void merge(T[] nums, int l, int m, int h) {
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
        int i = l, j = m + 1;
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        for (int k = l; k <= h; k++) {
            aux[k] = nums[k]; // 将数据复制到辅助数组
        }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        for (int k = l; k <= h; k++) {
            if (i > m) {
                nums[k] = aux[j++];
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
            } else if (j > h) {
                nums[k] = aux[i++];
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
            } else if (aux[i].compareTo(aux[j]) <= 0) {
                nums[k] = aux[i++]; // 先进行这一步,保证稳定性
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
            } else {
                nums[k] = aux[j++];
            }
        }
    }
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 2. 自顶向下归并排序
2018-08-15 21:44:50 +08:00
2018-08-15 22:16:30 +08:00
将一个大数组分成两个小数组去求解。
2019-03-08 21:39:27 +08:00
因为每次都将问题对半分成两个子问题这种对半分的算法复杂度一般为 O(NlogN)。
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class Up2DownMergeSort<T extends Comparable<T>> extends MergeSort<T> {
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void sort(T[] nums) {
        aux = (T[]) new Comparable[nums.length];
        sort(nums, 0, nums.length - 1);
    }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private void sort(T[] nums, int l, int h) {
        if (h <= l) {
            return;
        }
        int mid = l + (h - l) / 2;
        sort(nums, l, mid);
        sort(nums, mid + 1, h);
        merge(nums, l, mid, h);
    }
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 3. 自底向上归并排序
2018-08-15 21:44:50 +08:00
先归并那些微型数组,然后成对归并得到的微型数组。
```java
2019-03-08 21:39:27 +08:00
public class Down2UpMergeSort<T extends Comparable<T>> extends MergeSort<T> {
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void sort(T[] nums) {
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
        int N = nums.length;
        aux = (T[]) new Comparable[N];
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
        for (int sz = 1; sz < N; sz += sz) {
            for (int lo = 0; lo < N - sz; lo += sz + sz) {
                merge(nums, lo, lo + sz - 1, Math.min(lo + sz + sz - 1, N - 1));
            }
        }
    }
2018-08-15 21:44:50 +08:00
}
2018-08-15 22:16:30 +08:00
2018-08-15 21:44:50 +08:00
```
2019-03-08 21:39:27 +08:00
## 快速排序
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
### 1. 基本算法
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
- 归并排序将数组分为两个子数组分别排序,并将有序的子数组归并使得整个数组排序;
- 快速排序通过一个切分元素将数组分为两个子数组,左子数组小于等于切分元素,右子数组大于等于切分元素,将这两个子数组排序也就将整个数组排序了。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/3_200.png)
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class QuickSort<T extends Comparable<T>> extends Sort<T> {
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void sort(T[] nums) {
        shuffle(nums);
        sort(nums, 0, nums.length - 1);
    }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private void sort(T[] nums, int l, int h) {
        if (h <= l)
            return;
        int j = partition(nums, l, h);
        sort(nums, l, j - 1);
        sort(nums, j + 1, h);
    }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private void shuffle(T[] nums) {
        List<Comparable> list = Arrays.asList(nums);
        Collections.shuffle(list);
        list.toArray(nums);
    }
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 2. 切分
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
 a[l] 作为切分元素然后从数组的左端向右扫描直到找到第一个大于等于它的元素再从数组的右端向左扫描找到第一个小于它的元素交换这两个元素。不断进行这个过程就可以保证左指针 i 的左侧元素都不大于切分元素右指针 j 的右侧元素都不小于切分元素。当两个指针相遇时将切分元素 a[l]  a[j] 交换位置。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/61550402057509.gif)
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
private int partition(T[] nums, int l, int h) {
    int i = l, j = h + 1;
    T v = nums[l];
    while (true) {
        while (less(nums[++i], v) && i != h) ;
        while (less(v, nums[--j]) && j != l) ;
        if (i >= j)
            break;
        swap(nums, i, j);
    }
    swap(nums, l, j);
    return j;
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 3. 性能分析
2018-08-15 21:44:50 +08:00
快速排序是原地排序,不需要辅助数组,但是递归调用需要辅助栈。
2019-03-08 21:39:27 +08:00
快速排序最好的情况下是每次都正好将数组对半分这样递归调用次数才是最少的。这种情况下比较次数为 C<sub>N</sub>=2C<sub>N/2</sub>+N复杂度为 O(NlogN)。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
最坏的情况下第一次从最小的元素切分第二次从第二小的元素切分如此这般。因此最坏的情况下需要比较 N<sup>2</sup>/2。为了防止数组最开始就是有序的在进行快速排序时需要随机打乱数组。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
### 4. 算法改进
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
#### 4.1 切换到插入排序
2018-08-15 21:44:50 +08:00
因为快速排序在小数组中也会递归调用自己,对于小数组,插入排序比快速排序的性能更好,因此在小数组中可以切换到插入排序。
2019-03-08 21:39:27 +08:00
#### 4.2 三数取中
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
最好的情况下是每次都能取数组的中位数作为切分元素但是计算中位数的代价很高。一种折中方法是取 3 个元素并将大小居中的元素作为切分元素。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
#### 4.3 三向切分
2018-08-15 21:44:50 +08:00
对于有大量重复元素的数组,可以将数组切分为三部分,分别对应小于、等于和大于切分元素。
2018-12-30 14:22:17 +08:00
三向切分快速排序对于有大量重复元素的随机数组可以在线性时间内完成排序。
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class ThreeWayQuickSort<T extends Comparable<T>> extends QuickSort<T> {
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    protected void sort(T[] nums, int l, int h) {
        if (h <= l) {
            return;
        }
        int lt = l, i = l + 1, gt = h;
        T v = nums[l];
        while (i <= gt) {
            int cmp = nums[i].compareTo(v);
            if (cmp < 0) {
                swap(nums, lt++, i++);
            } else if (cmp > 0) {
                swap(nums, i, gt--);
            } else {
                i++;
            }
        }
        sort(nums, l, lt - 1);
        sort(nums, gt + 1, h);
    }
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 5. 基于切分的快速选择算法
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
快速排序的 partition() 方法会返回一个整数 j 使得 a[l..j-1] 小于等于 a[j] a[j+1..h] 大于等于 a[j]此时 a[j] 就是数组的第 j 大元素。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
可以利用这个特性找出数组的第 k 个元素。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
该算法是线性级别的,假设每次能将数组二分,那么比较的总次数为 (N+N/2+N/4+..)直到找到第 k 个元素这个和显然小于 2N。
2018-08-15 22:16:30 +08:00
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public T select(T[] nums, int k) {
    int l = 0, h = nums.length - 1;
    while (h > l) {
        int j = partition(nums, l, h);
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
        if (j == k) {
            return nums[k];
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
        } else if (j > k) {
            h = j - 1;
2018-08-15 22:16:30 +08:00
2019-03-08 21:39:27 +08:00
        } else {
            l = j + 1;
        }
    }
    return nums[k];
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
## 堆排序
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
### 1. 堆
2018-08-15 21:44:50 +08:00
2018-12-30 14:22:17 +08:00
堆中某个节点的值总是大于等于其子节点的值,并且堆是一颗完全二叉树。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
堆可以用数组来表示这是因为堆是完全二叉树而完全二叉树很容易就存储在数组中。位置 k 的节点的父节点位置为 k/2而它的两个子节点的位置分别为 2k  2k+1。这里不使用数组索引为 0 的位置是为了更清晰地描述节点的位置关系。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/8_200.png)
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class Heap<T extends Comparable<T>> {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private T[] heap;
    private int N = 0;
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    public Heap(int maxN) {
        this.heap = (T[]) new Comparable[maxN + 1];
    }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    public boolean isEmpty() {
        return N == 0;
    }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    public int size() {
        return N;
    }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private boolean less(int i, int j) {
        return heap[i].compareTo(heap[j]) < 0;
    }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private void swap(int i, int j) {
        T t = heap[i];
        heap[i] = heap[j];
        heap[j] = t;
    }
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 2. 上浮和下沉
2018-08-15 21:44:50 +08:00
在堆中,当一个节点比父节点大,那么需要交换这个两个节点。交换后还可能比它新的父节点大,因此需要不断地进行比较和交换操作,把这种操作称为上浮。
2019-03-08 21:39:27 +08:00
![](index_files/81550405360028.gif)
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
private void swim(int k) {
    while (k > 1 && less(k / 2, k)) {
        swap(k / 2, k);
        k = k / 2;
    }
2018-08-15 21:44:50 +08:00
}
```
2018-09-29 22:34:48 +08:00
类似地,当一个节点比子节点来得小,也需要不断地向下进行比较和交换操作,把这种操作称为下沉。一个节点如果有两个子节点,应当与两个子节点中最大那个节点进行交换。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/91550405374894.gif)
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
private void sink(int k) {
    while (2 * k <= N) {
        int j = 2 * k;
        if (j < N && less(j, j + 1))
            j++;
        if (!less(k, j))
            break;
        swap(k, j);
        k = j;
    }
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 3. 插入元素
2018-08-15 21:44:50 +08:00
将新元素放到数组末尾,然后上浮到合适的位置。
```java
2019-03-08 21:39:27 +08:00
public void insert(Comparable v) {
    heap[++N] = v;
    swim(N);
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 4. 删除最大元素
2018-08-15 21:44:50 +08:00
从数组顶端删除最大的元素,并将数组的最后一个元素放到顶端,并让这个元素下沉到合适的位置。
```java
2019-03-08 21:39:27 +08:00
public T delMax() {
    T max = heap[1];
    swap(1, N--);
    heap[N + 1] = null;
    sink(1);
    return max;
2018-08-15 21:44:50 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 5. 堆排序
2018-08-15 21:44:50 +08:00
2018-09-01 01:22:24 +08:00
把最大元素和当前堆中数组的最后一个元素交换位置,并且不删除它,那么就可以得到一个从尾到头的递减序列,从正向来看就是一个递增序列,这就是堆排序。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
#### 5.1 构建堆
2018-08-15 21:44:50 +08:00
2018-09-01 01:22:24 +08:00
无序数组建立堆最直接的方法是从左到右遍历数组进行上浮操作。一个更高效的方法是从右至左进行下沉操作,如果一个节点的两个节点都已经是堆有序,那么进行下沉操作可以使得这个节点为根节点的堆有序。叶子节点不需要进行下沉操作,可以忽略叶子节点的元素,因此只需要遍历一半的元素即可。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/101550406418006.gif)
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
#### 5.2 交换堆顶元素与最后一个元素
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
交换之后需要进行下沉操作维持堆的有序状态。
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/111550407277293.gif)
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class HeapSort<T extends Comparable<T>> extends Sort<T> {
    /**
     * 数组第 0 个位置不能有元素
     */
    @Override
    public void sort(T[] nums) {
        int N = nums.length - 1;
        for (int k = N / 2; k >= 1; k--)
            sink(nums, k, N);
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        while (N > 1) {
            swap(nums, 1, N--);
            sink(nums, 1, N);
        }
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    private void sink(T[] nums, int k, int N) {
        while (2 * k <= N) {
            int j = 2 * k;
            if (j < N && less(nums, j, j + 1))
                j++;
            if (!less(nums, k, j))
                break;
            swap(nums, k, j);
            k = j;
        }
    }
2018-06-06 20:16:19 +08:00
2019-03-08 21:39:27 +08:00
    private boolean less(T[] nums, int i, int j) {
        return nums[i].compareTo(nums[j]) < 0;
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 6. 分析
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
一个堆的高度为 logN因此在堆中插入元素和删除最大元素的复杂度都为 logN。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
对于堆排序由于要对 N 个节点进行下沉操作因此复杂度为 NlogN。
2018-08-15 21:44:50 +08:00
2018-09-29 22:34:48 +08:00
堆排序是一种原地排序,没有利用额外的空间。
2018-08-15 21:44:50 +08:00
2018-12-30 14:22:17 +08:00
现代操作系统很少使用堆排序,因为它无法利用局部性原理进行缓存,也就是数组元素很少和相邻的元素进行比较和交换。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
## 小结
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
### 1. 排序算法的比较
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
| 算法 | 稳定性 | 时间复杂度 | 空间复杂度 | 备注 |
| :---: | :---: |:---: | :---: | :---: |
| 选择排序 | × | N<sup>2</sup> | 1 | |
| 冒泡排序 | √ |  N<sup>2</sup> | 1 | |
| 插入排序 | √ |  N ~ N<sup>2</sup> | 1 | 时间复杂度和初始顺序有关 |
| 希尔排序 | ×  |  N 的若干倍乘于递增序列的长度 | 1 | 改进版插入排序 |
| 快速排序 | ×  | NlogN | logN | |
| 三向切分快速排序 | ×  |  N ~ NlogN | logN | 适用于有大量重复主键|
| 归并排序 | √ |  NlogN | N | |
| 堆排序 | ×  |  NlogN | 1 | 无法利用局部性原理|
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
快速排序是最快的通用排序算法,它的内循环的指令很少,而且它还能利用缓存,因为它总是顺序地访问数据。它的运行时间近似为 ~cNlogN这里的 c 比其它线性对数级别的排序算法都要小。
2018-12-30 14:22:17 +08:00
使用三向切分快速排序,实际应用中可能出现的某些分布的输入能够达到线性级别,而其它排序算法仍然需要线性对数时间。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
### 2. Java 的排序算法实现
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
Java 主要排序方法为 java.util.Arrays.sort(),对于原始数据类型使用三向切分的快速排序,对于引用类型使用归并排序。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
# 四、并查集
2018-06-06 20:56:17 +08:00
用于解决动态连通性问题,能动态连接两个点,并且判断两个点是否连通。
2019-03-08 21:39:27 +08:00
<img src="index_files/9d0a637c-6a8f-4f5a-99b9-fdcfa26793ff.png" width="400"/>
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
| 方法 | 描述 |
| :---: | :---: |
| UF(int N) | 构造一个大小为 N 的并查集 |
| void union(int p, int q) | 连接 p  q 节点 |
| int find(int p) | 查找 p 所在的连通分量编号 |
| boolean connected(int p, int q) | 判断 p  q 节点是否连通 |
2018-06-06 20:56:17 +08:00
```java
2019-03-08 21:39:27 +08:00
public abstract class UF {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    protected int[] id;
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
    public UF(int N) {
        id = new int[N];
        for (int i = 0; i < N; i++) {
            id[i] = i;
        }
    }
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
    public boolean connected(int p, int q) {
        return find(p) == find(q);
    }
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
    public abstract int find(int p);
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
    public abstract void union(int p, int q);
2018-06-06 20:56:17 +08:00
}
```
2019-03-08 21:39:27 +08:00
## Quick Find
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
可以快速进行 find 操作也就是可以快速判断两个节点是否连通。
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
需要保证同一连通分量的所有节点的 id 值相等。
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
但是 union 操作代价却很高需要将其中一个连通分量中的所有节点 id 值都修改为另一个节点的 id 值。
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/8f0cc500-5994-4c7a-91a9-62885d658662.png" width="350"/>
2018-06-06 20:56:17 +08:00
```java
2019-03-08 21:39:27 +08:00
public class QuickFindUF extends UF {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    public QuickFindUF(int N) {
        super(N);
    }
2018-06-06 20:56:17 +08:00
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int find(int p) {
        return id[p];
    }
2018-06-06 20:56:17 +08:00
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void union(int p, int q) {
        int pID = find(p);
        int qID = find(q);
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
        if (pID == qID) {
            return;
        }
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
        for (int i = 0; i < id.length; i++) {
            if (id[i] == pID) {
                id[i] = qID;
            }
        }
    }
2018-06-06 20:56:17 +08:00
}
```
2019-03-08 21:39:27 +08:00
## Quick Union
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
可以快速进行 union 操作只需要修改一个节点的 id 值即可。
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
但是 find 操作开销很大因为同一个连通分量的节点 id 值不同id 值只是用来指向另一个节点。因此需要一直向上查找操作直到找到最上层的节点。
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/5d4a5181-65fb-4bf2-a9c6-899cab534b44.png" width="350"/>
2018-06-06 20:56:17 +08:00
```java
2019-03-08 21:39:27 +08:00
public class QuickUnionUF extends UF {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    public QuickUnionUF(int N) {
        super(N);
    }
2018-06-06 20:56:17 +08:00
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int find(int p) {
        while (p != id[p]) {
            p = id[p];
        }
        return p;
    }
2018-06-06 20:56:17 +08:00
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void union(int p, int q) {
        int pRoot = find(p);
        int qRoot = find(q);
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        if (pRoot != qRoot) {
            id[pRoot] = qRoot;
        }
    }
2018-06-06 20:56:17 +08:00
}
```
2019-03-08 21:39:27 +08:00
这种方法可以快速进行 union 操作但是 find 操作和树高成正比最坏的情况下树的高度为节点的数目。
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/bfbb11e2-d208-4efa-b97b-24cd40467cd8.png" width="130"/>
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
## 加权 Quick Union
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
为了解决 quick-union 的树通常会很高的问题加权 quick-union  union 操作时会让较小的树连接较大的树上面。
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
理论研究证明加权 quick-union 算法构造的树深度最多不超过 logN。
2018-06-06 20:56:17 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/a4c17d43-fa5e-4935-b74e-147e7f7e782c.png" width="170"/>
2018-05-09 17:15:36 +08:00
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class WeightedQuickUnionUF extends UF {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    // 保存节点的数量信息
    private int[] sz;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    public WeightedQuickUnionUF(int N) {
        super(N);
        this.sz = new int[N];
        for (int i = 0; i < N; i++) {
            this.sz[i] = 1;
        }
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int find(int p) {
        while (p != id[p]) {
            p = id[p];
        }
        return p;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void union(int p, int q) {
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
        int i = find(p);
        int j = find(q);
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        if (i == j) return;
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        if (sz[i] < sz[j]) {
            id[i] = j;
            sz[j] += sz[i];
        } else {
            id[j] = i;
            sz[i] += sz[j];
        }
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
## 路径压缩的加权 Quick Union
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
在检查节点的同时将它们直接链接到根节点只需要在 find 中添加一个循环即可。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
## 比较
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
| 算法 | union | find |
| :---: | :---: | :---: |
| Quick Find | N | 1 |
| Quick Union | 树高 | 树高 |
| 加权 Quick Union | logN | logN |
| 路径压缩的加权 Quick Union | 非常接近 1 | 非常接近 1 |
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
# 五、栈和队列
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
## 栈
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public interface MyStack<Item> extends Iterable<Item> {
2018-06-07 12:18:16 +08:00
2019-03-08 21:39:27 +08:00
    MyStack<Item> push(Item item);
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    Item pop() throws Exception;
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    boolean isEmpty();
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    int size();
2018-06-04 14:29:04 +08:00
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 1. 数组实现
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public class ArrayStack<Item> implements MyStack<Item> {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    // 栈元素数组,只能通过转型来创建泛型数组
    private Item[] a = (Item[]) new Object[1];
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    // 元素数量
    private int N = 0;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public MyStack<Item> push(Item item) {
        check();
        a[N++] = item;
        return this;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public Item pop() throws Exception {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        if (isEmpty()) {
            throw new Exception("stack is empty");
        }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        Item item = a[--N];
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        check();
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
        // 避免对象游离
        a[N] = null;
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        return item;
    }
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private void check() {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        if (N >= a.length) {
            resize(2 * a.length);
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        } else if (N > 0 && N <= a.length / 4) {
            resize(a.length / 2);
        }
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    /**
     * 调整数组大小,使得栈具有伸缩性
     */
    private void resize(int size) {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        Item[] tmp = (Item[]) new Object[size];
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        for (int i = 0; i < N; i++) {
            tmp[i] = a[i];
        }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        a = tmp;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public boolean isEmpty() {
        return N == 0;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int size() {
        return N;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public Iterator<Item> iterator() {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        // 返回逆序遍历的迭代器
        return new Iterator<Item>() {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            private int i = N;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            @Override
            public boolean hasNext() {
                return i > 0;
            }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            @Override
            public Item next() {
                return a[--i];
            }
        };
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    }
2018-08-15 21:44:50 +08:00
}
```
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
### 2. 链表实现
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
需要使用链表的头插法来实现因为头插法中最后压入栈的元素在链表的开头它的 next 指针指向前一个压入栈的元素在弹出元素时就可以通过 next 指针遍历到前一个压入栈的元素从而让这个元素成为新的栈顶元素。
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public class ListStack<Item> implements MyStack<Item> {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private Node top = null;
    private int N = 0;
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    private class Node {
        Item item;
        Node next;
    }
2018-05-09 17:15:36 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public MyStack<Item> push(Item item) {
2018-05-09 17:15:36 +08:00
2019-03-08 21:39:27 +08:00
        Node newTop = new Node();
2018-05-09 17:15:36 +08:00
2019-03-08 21:39:27 +08:00
        newTop.item = item;
        newTop.next = top;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        top = newTop;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        N++;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        return this;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public Item pop() throws Exception {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        if (isEmpty()) {
            throw new Exception("stack is empty");
        }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        Item item = top.item;
2018-06-07 12:18:16 +08:00
2019-03-08 21:39:27 +08:00
        top = top.next;
        N--;
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
        return item;
    }
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public boolean isEmpty() {
        return N == 0;
    }
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int size() {
        return N;
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public Iterator<Item> iterator() {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        return new Iterator<Item>() {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            private Node cur = top;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            @Override
            public boolean hasNext() {
                return cur != null;
            }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            @Override
            public Item next() {
                Item item = cur.item;
                cur = cur.next;
                return item;
            }
        };
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
## 队列
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
下面是队列的链表实现需要维护 first  last 节点指针分别指向队首和队尾。
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
这里需要考虑 first  last 指针哪个作为链表的开头。因为出队列操作需要让队首元素的下一个元素成为队首所以需要容易获取下一个元素而链表的头部节点的 next 指针指向下一个元素因此可以让 first 指针链表的开头。
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public interface MyQueue<Item> extends Iterable<Item> {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    int size();
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    boolean isEmpty();
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    MyQueue<Item> add(Item item);
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    Item remove() throws Exception;
2018-04-06 22:46:59 +08:00
}
```
2018-08-15 21:44:50 +08:00
```java
2019-03-08 21:39:27 +08:00
public class ListQueue<Item> implements MyQueue<Item> {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    private Node first;
    private Node last;
    int N = 0;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    private class Node {
        Item item;
        Node next;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public boolean isEmpty() {
        return N == 0;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int size() {
        return N;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public MyQueue<Item> add(Item item) {
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
        Node newNode = new Node();
        newNode.item = item;
        newNode.next = null;
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        if (isEmpty()) {
            last = newNode;
            first = newNode;
        } else {
            last.next = newNode;
            last = newNode;
        }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        N++;
        return this;
    }
2018-06-04 14:29:04 +08:00
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public Item remove() throws Exception {
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        if (isEmpty()) {
            throw new Exception("queue is empty");
        }
2018-06-07 13:39:55 +08:00
2019-03-08 21:39:27 +08:00
        Node node = first;
        first = first.next;
        N--;
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        if (isEmpty()) {
            last = null;
        }
2018-08-15 21:44:50 +08:00
2019-03-08 21:39:27 +08:00
        return node.item;
    }
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public Iterator<Item> iterator() {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
        return new Iterator<Item>() {
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            Node cur = first;
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            @Override
            public boolean hasNext() {
                return cur != null;
            }
2018-06-07 10:48:26 +08:00
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
            @Override
            public Item next() {
                Item item = cur.item;
                cur = cur.next;
                return item;
            }
        };
    }
2018-08-15 21:44:50 +08:00
}
```
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
# 六、符号表
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
符号表Symbol Table是一种存储键值对的数据结构可以支持快速查找操作。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
符号表分为有序和无序两种有序符号表主要指支持 min()、max() 等根据键的大小关系来实现的操作。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
有序符号表的键需要实现 Comparable 接口。
2018-04-06 22:46:59 +08:00
2018-06-07 10:40:56 +08:00
```java
2019-03-08 21:39:27 +08:00
public interface UnorderedST<Key, Value> {
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    int size();
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    Value get(Key key);
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    void put(Key key, Value value);
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    void delete(Key key);
2018-06-07 10:40:56 +08:00
}
```
```java
2019-03-08 21:39:27 +08:00
public interface OrderedST<Key extends Comparable<Key>, Value> {
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    int size();
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    void put(Key key, Value value);
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    Value get(Key key);
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    Key min();
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    Key max();
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    int rank(Key key);
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    List<Key> keys(Key l, Key h);
2018-06-07 10:40:56 +08:00
}
```
2019-03-08 21:39:27 +08:00
## 初级实现
2018-07-12 00:01:21 +08:00
2019-03-08 21:39:27 +08:00
### 1. 链表实现无序符号表
2018-06-07 10:40:56 +08:00
```java
2019-03-08 21:39:27 +08:00
public class ListUnorderedST<Key, Value> implements UnorderedST<Key, Value> {
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    private Node first;
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    private class Node {
        Key key;
        Value value;
        Node next;
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
        Node(Key key, Value value, Node next) {
            this.key = key;
            this.value = value;
            this.next = next;
        }
    }
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int size() {
        int cnt = 0;
        Node cur = first;
        while (cur != null) {
            cnt++;
            cur = cur.next;
        }
        return cnt;
    }
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void put(Key key, Value value) {
        Node cur = first;
        // 如果在链表中找到节点的键等于 key 就更新这个节点的值为 value
        while (cur != null) {
            if (cur.key.equals(key)) {
                cur.value = value;
                return;
            }
            cur = cur.next;
        }
        // 否则使用头插法插入一个新节点
        first = new Node(key, value, first);
    }
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public void delete(Key key) {
        if (first == null)
            return;
        if (first.key.equals(key))
            first = first.next;
        Node pre = first, cur = first.next;
        while (cur != null) {
            if (cur.key.equals(key)) {
                pre.next = cur.next;
                return;
            }
            pre = pre.next;
            cur = cur.next;
        }
    }
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public Value get(Key key) {
        Node cur = first;
        while (cur != null) {
            if (cur.key.equals(key))
                return cur.value;
            cur = cur.next;
        }
        return null;
    }
2018-06-07 10:40:56 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 2. 二分查找实现有序符号表
2018-04-06 22:46:59 +08:00
使用一对平行数组,一个存储键一个存储值。
2019-03-08 21:39:27 +08:00
二分查找的 rank() 方法至关重要,当键在表中时,它能够知道该键的位置;当键不在表中时,它也能知道在何处插入新键。
二分查找最多需要 logN+1 次比较使用二分查找实现的符号表的查找操作所需要的时间最多是对数级别的。但是插入操作需要移动数组元素是线性级别的。
```java
public class BinarySearchOrderedST<Key extends Comparable<Key>, Value> implements OrderedST<Key, Value> {
    private Key[] keys;
    private Value[] values;
    private int N = 0;
    public BinarySearchOrderedST(int capacity) {
        keys = (Key[]) new Comparable[capacity];
        values = (Value[]) new Object[capacity];
    }
    @Override
    public int size() {
        return N;
    }
    @Override
    public int rank(Key key) {
        int l = 0, h = N - 1;
        while (l <= h) {
            int m = l + (h - l) / 2;
            int cmp = key.compareTo(keys[m]);
            if (cmp == 0)
                return m;
            else if (cmp < 0)
                h = m - 1;
            else
                l = m + 1;
        }
        return l;
    }
    @Override
    public List<Key> keys(Key l, Key h) {
        int index = rank(l);
        List<Key> list = new ArrayList<>();
        while (keys[index].compareTo(h) <= 0) {
            list.add(keys[index]);
            index++;
        }
        return list;
    }
    @Override
    public void put(Key key, Value value) {
        int index = rank(key);
        // 如果找到已经存在的节点键为 key就更新这个节点的值为 value
        if (index < N && keys[index].compareTo(key) == 0) {
            values[index] = value;
            return;
        }
        // 否则在数组中插入新的节点,需要先将插入位置之后的元素都向后移动一个位置
        for (int j = N; j > index; j--) {
            keys[j] = keys[j - 1];
            values[j] = values[j - 1];
        }
        keys[index] = key;
        values[index] = value;
        N++;
    }
    @Override
    public Value get(Key key) {
        int index = rank(key);
        if (index < N && keys[index].compareTo(key) == 0)
            return values[index];
        return null;
    }
    @Override
    public Key min() {
        return keys[0];
    }
    @Override
    public Key max() {
        return keys[N - 1];
    }
}
```
## 二叉查找树
**二叉树** 是一个空链接,或者是一个有左右两个链接的节点,每个链接都指向一颗子二叉树。
<img src="index_files/f9f9f993-8ece-4da7-b848-af9b438fad76.png" width="200"/>
**二叉查找树**BST是一颗二叉树并且每个节点的值都大于等于其左子树中的所有节点的值而小于等于右子树的所有节点的值。
<img src="index_files/8ae4550b-f0cb-4e4d-9e2b-c550538bf230.png" width="200"/>
BST 有一个重要性质就是它的中序遍历结果递增排序。
<img src="index_files/fbe54203-c005-48f0-8883-b05e564a3173.png" width="200"/>
2018-04-06 22:46:59 +08:00
基本数据结构:
```java
2019-03-08 21:39:27 +08:00
public class BST<Key extends Comparable<Key>, Value> implements OrderedST<Key, Value> {
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    protected Node root;
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    protected class Node {
        Key key;
        Value val;
        Node left;
        Node right;
        // 以该节点为根的子树节点总数
        int N;
        // 红黑树中使用
        boolean color;
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
        Node(Key key, Value val, int N) {
            this.key = key;
            this.val = val;
            this.N = N;
        }
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    @Override
    public int size() {
        return size(root);
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    private int size(Node x) {
        if (x == null)
            return 0;
        return x.N;
    }
2018-07-12 00:01:21 +08:00
2019-03-08 21:39:27 +08:00
    protected void recalculateSize(Node x) {
        x.N = size(x.left) + size(x.right) + 1;
    }
2018-04-06 22:46:59 +08:00
}
```
2018-09-01 01:22:24 +08:00
为了方便绘图,下文中二叉树的空链接不画出来。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
### 1. get()
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
- 如果树是空的,则查找未命中;
- 如果被查找的键和根节点的键相等,查找命中;
- 否则递归地在子树中查找:如果被查找的键较小就在左子树中查找,较大就在右子树中查找。
2018-04-06 22:46:59 +08:00
```java
2018-06-07 10:40:56 +08:00
@Override
2019-03-08 21:39:27 +08:00
public Value get(Key key) {
    return get(root, key);
2018-04-06 22:46:59 +08:00
}
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
private Value get(Node x, Key key) {
    if (x == null)
        return null;
    int cmp = key.compareTo(x.key);
    if (cmp == 0)
        return x.val;
    else if (cmp < 0)
        return get(x.left, key);
    else
        return get(x.right, key);
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 2. put()
2018-04-06 22:46:59 +08:00
2018-07-12 00:01:21 +08:00
当插入的键不存在于树中,需要创建一个新节点,并且更新上层节点的链接指向该节点,使得该节点正确地链接到树中。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/107a6a2b-f15b-4cad-bced-b7fb95258c9c.png" width="200"/>
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
 @Override
public void put(Key key, Value value) {
    root = put(root, key, value);
2018-04-06 22:46:59 +08:00
}
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
private Node put(Node x, Key key, Value value) {
    if (x == null)
        return new Node(key, value, 1);
    int cmp = key.compareTo(x.key);
    if (cmp == 0)
        x.val = value;
    else if (cmp < 0)
        x.left = put(x.left, key, value);
    else
        x.right = put(x.right, key, value);
    recalculateSize(x);
    return x;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 3. 分析
2018-04-06 22:46:59 +08:00
2018-07-12 00:01:21 +08:00
二叉查找树的算法运行时间取决于树的形状,而树的形状又取决于键被插入的先后顺序。
2019-03-08 21:39:27 +08:00
最好的情况下树是完全平衡的每条空链接和根节点的距离都为 logN。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/4d741402-344d-4b7c-be01-e57184bcad0e.png" width="200"/>
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
在最坏的情况下树的高度为 N。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/be7dca03-12ec-456b-8b54-b1b3161f5531.png" width="200"/>
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
### 4. floor()
2018-04-06 22:46:59 +08:00
floor(key):小于等于键的最大键
2019-03-08 21:39:27 +08:00
- 如果键小于根节点的键那么 floor(key) 一定在左子树中;
- 如果键大于根节点的键需要先判断右子树中是否存在 floor(key)如果存在就返回否则根节点就是 floor(key)。
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public Key floor(Key key) {
    Node x = floor(root, key);
    if (x == null)
        return null;
    return x.key;
2018-04-06 22:46:59 +08:00
}
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
private Node floor(Node x, Key key) {
    if (x == null)
        return null;
    int cmp = key.compareTo(x.key);
    if (cmp == 0)
        return x;
    if (cmp < 0)
        return floor(x.left, key);
    Node t = floor(x.right, key);
    return t != null ? t : x;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 5. rank()
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
rank(key) 返回 key 的排名。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
- 如果键和根节点的键相等,返回左子树的节点数;
- 如果小于,递归计算在左子树中的排名;
- 如果大于递归计算在右子树中的排名加上左子树的节点数再加上 1根节点
2018-04-06 22:46:59 +08:00
```java
2018-06-07 10:40:56 +08:00
@Override
2019-03-08 21:39:27 +08:00
public int rank(Key key) {
    return rank(key, root);
2018-04-06 22:46:59 +08:00
}
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
private int rank(Key key, Node x) {
    if (x == null)
        return 0;
    int cmp = key.compareTo(x.key);
    if (cmp == 0)
        return size(x.left);
    else if (cmp < 0)
        return rank(key, x.left);
    else
        return 1 + size(x.left) + rank(key, x.right);
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 6. min()
2018-04-06 22:46:59 +08:00
```java
2018-06-07 10:40:56 +08:00
@Override
2019-03-08 21:39:27 +08:00
public Key min() {
    return min(root).key;
2018-06-07 10:40:56 +08:00
}
2019-03-08 21:39:27 +08:00
private Node min(Node x) {
    if (x == null)
        return null;
    if (x.left == null)
        return x;
    return min(x.left);
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 7. deleteMin()
2018-04-06 22:46:59 +08:00
令指向最小节点的链接指向最小节点的右子树。
2019-03-08 21:39:27 +08:00
<img src="index_files/dd15a984-e977-4644-b127-708cddb8ca99.png" width="500"/>
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public void deleteMin() {
    root = deleteMin(root);
2018-04-06 22:46:59 +08:00
}
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
public Node deleteMin(Node x) {
    if (x.left == null)
        return x.right;
    x.left = deleteMin(x.left);
    recalculateSize(x);
    return x;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 8. delete()
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
- 如果待删除的节点只有一个子树,  那么只需要让指向待删除节点的链接指向唯一的子树即可;
- 否则,让右子树的最小节点替换该节点。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/fa568fac-ac58-48dd-a9bb-23b3065bf2dc.png" width="400"/>
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public void delete(Key key) {
    root = delete(root, key);
2018-04-06 22:46:59 +08:00
}
2019-03-08 21:39:27 +08:00
private Node delete(Node x, Key key) {
    if (x == null)
        return null;
    int cmp = key.compareTo(x.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;
    }
    recalculateSize(x);
    return x;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 9. keys()
2018-04-06 22:46:59 +08:00
利用二叉查找树中序遍历的结果为递增的特点。
```java
2018-06-07 10:40:56 +08:00
@Override
2019-03-08 21:39:27 +08:00
public List<Key> keys(Key l, Key h) {
    return keys(root, l, h);
2018-06-07 10:40:56 +08:00
}
2019-03-08 21:39:27 +08:00
private List<Key> keys(Node x, Key l, Key h) {
    List<Key> list = new ArrayList<>();
    if (x == null)
        return list;
    int cmpL = l.compareTo(x.key);
    int cmpH = h.compareTo(x.key);
    if (cmpL < 0)
        list.addAll(keys(x.left, l, h));
    if (cmpL <= 0 && cmpH >= 0)
        list.add(x.key);
    if (cmpH > 0)
        list.addAll(keys(x.right, l, h));
    return list;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 10. 分析
2018-04-06 22:46:59 +08:00
2018-09-01 01:22:24 +08:00
二叉查找树所有操作在最坏的情况下所需要的时间都和树的高度成正比。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
## 2-3 查找树
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
2-3 查找树引入了 2- 节点和 3- 节点目的是为了让树平衡。一颗完美平衡的 2-3 查找树的所有空链接到根节点的距离应该是相同的。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/ff396233-1bb1-4e74-8bc2-d7c90146f5dd.png" width="250"/>
2018-08-12 22:53:28 +08:00
2019-03-08 21:39:27 +08:00
### 1. 插入操作
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
插入操作和 BST 的插入操作有很大区别BST 的插入操作是先进行一次未命中的查找然后再将节点插入到对应的空链接上。但是 2-3 查找树如果也这么做的话那么就会破坏了平衡性。它是将新节点插入到叶子节点上。
2018-04-06 22:46:59 +08:00
2018-06-07 10:40:56 +08:00
根据叶子节点的类型不同,有不同的处理方式:
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
- 如果插入到 2- 节点上那么直接将新节点和原来的节点组成 3- 节点即可。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/7f38a583-2f2e-4738-97af-510e6fb403a7.png" width="400"/>
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
- 如果是插入到 3- 节点上就会产生一个临时 4- 节点时需要将 4- 节点分裂成 3  2- 节点并将中间的 2- 节点移到上层节点中。如果上移操作继续产生临时 4- 节点则一直进行分裂上移直到不存在临时 4- 节点。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/ef280699-da36-4b38-9735-9b048a3c7fe0.png" width="500"/>
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
### 2. 性质
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
2-3 查找树插入操作的变换都是局部的除了相关的节点和链接之外不必修改或者检查树的其它部分而这些局部变换不会影响树的全局有序性和平衡性。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
2-3 查找树的查找和插入操作复杂度和插入顺序无关在最坏的情况下查找和插入操作访问的节点必然不超过 logN 含有 10 亿个节点的 2-3 查找树最多只需要访问 30 个节点就能进行任意的查找和插入操作。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
## 红黑树
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
红黑树是 2-3 查找树但它不需要分别定义 2- 节点和 3- 节点而是在普通的二叉查找树之上为节点添加颜色。指向一个节点的链接颜色如果为红色那么这个节点和上层节点表示的是一个 3- 节点,而黑色则是普通链接。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/4f48e806-f90b-4c09-a55f-ac0cd641c047.png" width="250"/>
2018-04-06 22:46:59 +08:00
红黑树具有以下性质:
2019-03-08 21:39:27 +08:00
- 红链接都为左链接;
- 完美黑色平衡,即任意空链接到根节点的路径上的黑链接数量相同。
2018-04-06 22:46:59 +08:00
画红黑树时可以将红链接画平。
2019-03-08 21:39:27 +08:00
<img src="index_files/3086c248-b552-499e-b101-9cffe5c2773e.png" width="300"/>
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public class RedBlackBST<Key extends Comparable<Key>, Value> extends BST<Key, Value> {
2018-09-01 01:22:24 +08:00
2019-03-08 21:39:27 +08:00
    private static final boolean RED = true;
    private static final boolean BLACK = false;
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    private boolean isRed(Node x) {
        if (x == null)
            return false;
        return x.color == RED;
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 1. 左旋转
2018-04-06 22:46:59 +08:00
因为合法的红链接都为左链接,如果出现右链接为红链接,那么就需要进行左旋转操作。
2019-03-08 21:39:27 +08:00
<img src="index_files/9110c1a0-8a54-4145-a814-2477d0128114.png" width="450"/>
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public Node rotateLeft(Node h) {
    Node x = h.right;
    h.right = x.left;
    x.left = h;
    x.color = h.color;
    h.color = RED;
    x.N = h.N;
    recalculateSize(h);
    return x;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 2. 右旋转
2018-04-06 22:46:59 +08:00
进行右旋转是为了转换两个连续的左红链接,这会在之后的插入过程中探讨。
2019-03-08 21:39:27 +08:00
<img src="index_files/e2f0d889-2330-424c-8193-198edebecff7.png" width="450"/>
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public Node rotateRight(Node h) {
    Node x = h.left;
    h.left = x.right;
    x.color = h.color;
    h.color = RED;
    x.N = h.N;
    recalculateSize(h);
    return x;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 3. 颜色转换
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
一个 4- 节点在红黑树中表现为一个节点的左右子节点都是红色的。分裂 4- 节点除了需要将子节点的颜色由红变黑之外同时需要将父节点的颜色由黑变红 2-3 树的角度看就是将中间节点移到上层节点。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/af4639f9-af54-4400-aaf5-4e261d96ace7.png" width="300"/>
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
void flipColors(Node h) {
    h.color = RED;
    h.left.color = BLACK;
    h.right.color = BLACK;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 4. 插入
2018-04-06 22:46:59 +08:00
先将一个节点按二叉查找树的方法插入到正确位置,然后再进行如下颜色操作:
2019-03-08 21:39:27 +08:00
- 如果右子节点是红色的而左子节点是黑色的,进行左旋转;
- 如果左子节点是红色的,而且左子节点的左子节点也是红色的,进行右旋转;
- 如果左右子节点均为红色的,进行颜色转换。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/08427d38-8df1-49a1-8990-e0ce5ee36ca2.png" width="400"/>
2018-04-06 22:46:59 +08:00
```java
2018-06-07 10:40:56 +08:00
@Override
2019-03-08 21:39:27 +08:00
public void put(Key key, Value value) {
    root = put(root, key, value);
    root.color = BLACK;
2018-04-06 22:46:59 +08:00
}
2019-03-08 21:39:27 +08:00
private Node put(Node x, Key key, Value value) {
    if (x == null) {
        Node node = new Node(key, value, 1);
        node.color = RED;
        return node;
    }
    int cmp = key.compareTo(x.key);
    if (cmp == 0)
        x.val = value;
    else if (cmp < 0)
        x.left = put(x.left, key, value);
    else
        x.right = put(x.right, key, value);
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    if (isRed(x.right) && !isRed(x.left))
        x = rotateLeft(x);
    if (isRed(x.left) && isRed(x.left.left))
        x = rotateRight(x);
    if (isRed(x.left) && isRed(x.right))
        flipColors(x);
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    recalculateSize(x);
    return x;
2018-04-06 22:46:59 +08:00
}
```
可以看到该插入操作和二叉查找树的插入操作类似,只是在最后加入了旋转和颜色变换操作即可。
2019-03-08 21:39:27 +08:00
根节点一定为黑色因为根节点没有上层节点也就没有上层节点的左链接指向根节点。flipColors() 有可能会使得根节点的颜色变为红色每当根节点由红色变成黑色时树的黑链接高度加 1.
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
### 5. 分析
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
一颗大小为 N 的红黑树的高度不会超过 2logN。最坏的情况下是它所对应的 2-3 构成最左边的路径节点全部都是 3- 节点而其余都是 2- 节点。
2018-04-06 22:46:59 +08:00
红黑树大多数的操作所需要的时间都是对数级别的。
2019-03-08 21:39:27 +08:00
## 散列表
2018-04-06 22:46:59 +08:00
散列表类似于数组,可以把散列表的散列值看成数组的索引值。访问散列表和访问数组元素一样快速,它可以在常数时间内实现查找和插入操作。
由于无法通过散列值知道键的大小关系,因此散列表无法实现有序性操作。
2019-03-08 21:39:27 +08:00
### 1. 散列函数
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
对于一个大小为 M 的散列表散列函数能够把任意键转换为 [0, M-1] 内的正整数该正整数即为 hash 值。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
散列表存在冲突也就是两个不同的键可能有相同的 hash 值。
2018-04-06 22:46:59 +08:00
散列函数应该满足以下三个条件:
2019-03-08 21:39:27 +08:00
- 一致性相等的键应当有相等的 hash 两个键相等表示调用 equals() 返回的值相等。
- 高效性计算应当简便有必要的话可以把 hash 值缓存起来在调用 hash 函数时直接返回。
- 均匀性所有键的 hash 值应当均匀地分布到 [0, M-1] 之间,如果不能满足这个条件,有可能产生很多冲突,从而导致散列表的性能下降。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
除留余数法可以将整数散列到 [0, M-1] 之间例如一个正整数 k计算 k%M 既可得到一个 [0, M-1] 之间的 hash 值。注意 M 最好是一个素数否则无法利用键包含的所有信息。例如 M  10<sup>k</sup>那么只能利用键的后 k 位。
2018-04-06 22:46:59 +08:00
2018-07-12 00:01:21 +08:00
对于其它数,可以将其转换成整数的形式,然后利用除留余数法。例如对于浮点数,可以将其的二进制形式转换成整数。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
对于多部分组合的类型每个部分都需要计算 hash 这些 hash 值都具有同等重要的地位。为了达到这个目的可以将该类型看成 R 进制的整数每个部分都具有不同的权值。
2018-04-06 22:46:59 +08:00
2018-07-12 00:01:21 +08:00
例如,字符串的散列函数实现如下:
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
int hash = 0;
for (int i = 0; i < s.length(); i++)
    hash = (R * hash + s.charAt(i)) % M;
2018-04-06 22:46:59 +08:00
```
再比如,拥有多个成员的自定义类的哈希函数如下:
```java
2019-03-08 21:39:27 +08:00
int hash = (((day * R + month) % M) * R + year) % M;
2018-04-06 22:46:59 +08:00
```
2019-03-08 21:39:27 +08:00
R 通常取 31。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
Java 中的 hashCode() 实现了哈希函数但是默认使用对象的内存地址值。在使用 hashCode() 应当结合除留余数法来使用。因为内存地址是 32 位整数我们只需要 31 位的非负整数因此应当屏蔽符号位之后再使用除留余数法。
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
int hash = (x.hashCode() & 0x7fffffff) % M;
2018-04-06 22:46:59 +08:00
```
2019-03-08 21:39:27 +08:00
使用 Java  HashMap 等自带的哈希表实现时只需要去实现 Key 类型的 hashCode() 函数即可。Java 规定 hashCode() 能够将键均匀分布于所有的 32 位整数Java 中的 String、Integer 等对象的 hashCode() 都能实现这一点。以下展示了自定义类型如何实现 hashCode()
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public class Transaction {
2018-09-01 01:22:24 +08:00
2019-03-08 21:39:27 +08:00
    private final String who;
    private final Date when;
    private final double amount;
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    public Transaction(String who, Date when, double amount) {
        this.who = who;
        this.when = when;
        this.amount = amount;
    }
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    public int hashCode() {
        int hash = 17;
        int R = 31;
        hash = R * hash + who.hashCode();
        hash = R * hash + when.hashCode();
        hash = R * hash + ((Double) amount).hashCode();
        return hash;
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
### 2. 拉链法
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
拉链法使用链表来存储 hash 值相同的键从而解决冲突。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
查找需要分两步首先查找 Key 所在的链表然后在链表中顺序查找。
2018-07-12 00:01:21 +08:00
2019-03-08 21:39:27 +08:00
对于 N 个键M 条链表 (N>M)如果哈希函数能够满足均匀性的条件每条链表的大小趋向于 N/M因此未命中的查找和插入操作所需要的比较次数为 ~N/M。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/9_200.png)
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
### 3. 线性探测法
2018-04-06 22:46:59 +08:00
2018-07-12 00:01:21 +08:00
线性探测法使用空位来解决冲突,当冲突发生时,向前探测一个空位来存储冲突的键。
2019-03-08 21:39:27 +08:00
使用线性探测法数组的大小 M 应当大于键的个数 NM>N)。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/121550407878282.gif)
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public class LinearProbingHashST<Key, Value> implements UnorderedST<Key, Value> {
2018-09-01 01:22:24 +08:00
2019-03-08 21:39:27 +08:00
    private int N = 0;
    private int M = 16;
    private Key[] keys;
    private Value[] values;
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    public LinearProbingHashST() {
        init();
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    public LinearProbingHashST(int M) {
        this.M = M;
        init();
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    private void init() {
        keys = (Key[]) new Object[M];
        values = (Value[]) new Object[M];
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    private int hash(Key key) {
        return (key.hashCode() & 0x7fffffff) % M;
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
#### 3.1 查找
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public Value get(Key key) {
    for (int i = hash(key); keys[i] != null; i = (i + 1) % M)
        if (keys[i].equals(key))
            return values[i];
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    return null;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
#### 3.2 插入
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public void put(Key key, Value value) {
    resize();
    putInternal(key, value);
2018-06-07 10:40:56 +08:00
}
2019-03-08 21:39:27 +08:00
private void putInternal(Key key, Value value) {
    int i;
    for (i = hash(key); keys[i] != null; i = (i + 1) % M)
        if (keys[i].equals(key)) {
            values[i] = value;
            return;
        }
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    keys[i] = key;
    values[i] = value;
    N++;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
#### 3.3 删除
2018-04-06 22:46:59 +08:00
删除操作应当将右侧所有相邻的键值对重新插入散列表中。
```java
2019-03-08 21:39:27 +08:00
public void delete(Key key) {
    int i = hash(key);
    while (keys[i] != null && !key.equals(keys[i]))
        i = (i + 1) % M;
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    // 不存在,直接返回
    if (keys[i] == null)
        return;
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    keys[i] = null;
    values[i] = null;
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    // 将之后相连的键值对重新插入
    i = (i + 1) % M;
    while (keys[i] != null) {
        Key keyToRedo = keys[i];
        Value valToRedo = values[i];
        keys[i] = null;
        values[i] = null;
        N--;
        putInternal(keyToRedo, valToRedo);
        i = (i + 1) % M;
    }
    N--;
    resize();
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
#### 3.5 调整数组大小
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
线性探测法的成本取决于连续条目的长度连续条目也叫聚簇。当聚簇很长时在查找和插入时也需要进行很多次探测。例如下图中 2~5 位置就是一个聚簇。
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
![](index_files/11_200.png)
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
α = N/M α 称为使用率。理论证明 α 小于 1/2 时探测的预计次数只在 1.5  2.5 之间。为了保证散列表的性能,应当调整数组的大小,使得 α 在 [1/4, 1/2] 之间。
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
private void resize() {
    if (N >= M / 2)
        resize(2 * M);
    else if (N <= M / 8)
        resize(M / 2);
2018-04-06 22:46:59 +08:00
}
2019-03-08 21:39:27 +08:00
private void resize(int cap) {
    LinearProbingHashST<Key, Value> t = new LinearProbingHashST<Key, Value>(cap);
    for (int i = 0; i < M; i++)
        if (keys[i] != null)
            t.putInternal(keys[i], values[i]);
2018-06-07 10:40:56 +08:00
2019-03-08 21:39:27 +08:00
    keys = t.keys;
    values = t.values;
    M = t.M;
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
## 小结
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
### 1. 符号表算法比较
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
| 算法 | 插入 | 查找 | 是否有序 |
| :---: | :---: | :---: | :---: |
| 链表实现的无序符号表 | N | N | yes |
| 二分查找实现的有序符号表 | N | logN | yes |
| 二叉查找树 | logN | logN | yes |
| 2-3 查找树 | logN | logN | yes |
| 拉链法实现的散列表 | N/M | N/M | no |
| 线性探测法实现的散列表 | 1 | 1 | no |
2018-04-06 22:46:59 +08:00
应当优先考虑散列表,当需要有序性操作时使用红黑树。
2019-03-08 21:39:27 +08:00
### 2. Java 的符号表实现
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
- java.util.TreeMap红黑树
- java.util.HashMap拉链法的散列表
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
### 3. 稀疏向量乘法
2018-04-06 22:46:59 +08:00
2019-03-08 21:39:27 +08:00
当向量为稀疏向量时可以使用符号表来存储向量中的非 0 索引和值使得乘法运算只需要对那些非 0 元素进行即可。
2018-04-06 22:46:59 +08:00
```java
2019-03-08 21:39:27 +08:00
public class SparseVector {
    private HashMap<Integer, Double> hashMap;
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    public SparseVector(double[] vector) {
        hashMap = new HashMap<>();
        for (int i = 0; i < vector.length; i++)
            if (vector[i] != 0)
                hashMap.put(i, vector[i]);
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    public double get(int i) {
        return hashMap.getOrDefault(i, 0.0);
    }
2018-06-04 14:29:04 +08:00
2019-03-08 21:39:27 +08:00
    public double dot(SparseVector other) {
        double sum = 0;
        for (int i : hashMap.keySet())
            sum += this.get(i) * other.get(i);
        return sum;
    }
2018-04-06 22:46:59 +08:00
}
```
2019-03-08 21:39:27 +08:00
# 七、其它
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
## 汉诺塔
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/54f1e052-0596-4b5e-833c-e80d75bf3f9b.png" width="300"/>
2018-07-11 23:26:24 +08:00
2019-03-08 21:39:27 +08:00
有三个柱子分别为 from、buffer、to。需要将 from 上的圆盘全部移动到 to 并且要保证小圆盘始终在大圆盘上。
2018-12-30 14:22:17 +08:00
2018-08-12 22:53:28 +08:00
这是一个经典的递归问题,分为三步求解:
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
  n-1 个圆盘从 from -> buffer
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/8587132a-021d-4f1f-a8ec-5a9daa7157a7.png" width="300"/>
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
  1 个圆盘从 from -> to
2018-08-12 22:53:28 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/2861e923-4862-4526-881c-15529279d49c.png" width="300"/>
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
  n-1 个圆盘从 buffer -> to
2018-08-12 22:53:28 +08:00
2019-03-08 21:39:27 +08:00
<img src="index_files/1c4e8185-8153-46b6-bd5a-288b15feeae6.png" width="300"/>
2018-06-14 12:51:36 +08:00
2018-08-12 22:53:28 +08:00
如果只有一个圆盘,那么只需要进行一次移动操作。
2019-03-08 21:39:27 +08:00
从上面的讨论可以知道a<sub>n</sub> = 2 * a<sub>n-1</sub> + 1显然 a<sub>n</sub> = 2<sup>n</sup> - 1n 个圆盘需要移动 2<sup>n</sup> - 1 次。
2018-08-12 22:53:28 +08:00
2018-06-14 12:51:36 +08:00
```java
2019-03-08 21:39:27 +08:00
public class Hanoi {
    public static void move(int n, String from, String buffer, String to) {
        if (n == 1) {
            System.out.println("from " + from + " to " + to);
            return;
        }
        move(n - 1, from, to, buffer);
        move(1, from, buffer, to);
        move(n - 1, buffer, from, to);
    }
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
    public static void main(String[] args) {
        Hanoi.move(3, "H1", "H2", "H3");
    }
2018-06-14 12:51:36 +08:00
}
```
```html
2019-03-08 21:39:27 +08:00
from H1 to H3
from H1 to H2
from H3 to H2
from H1 to H3
from H2 to H1
from H2 to H3
from H1 to H3
2018-06-14 12:51:36 +08:00
```
2019-03-08 21:39:27 +08:00
## 哈夫曼编码
2018-06-14 12:51:36 +08:00
2018-09-01 01:22:24 +08:00
根据数据出现的频率对数据进行编码,从而压缩原始数据。
2018-06-14 12:51:36 +08:00
2018-09-01 01:22:24 +08:00
例如对于一个文本文件,其中各种字符出现的次数如下:
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
- a : 10
- b : 20
- c : 40
- d : 80
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
可以将每种字符转换成二进制编码例如将 a 转换为 00b 转换为 01c 转换为 10d 转换为 11。这是最简单的一种编码方式没有考虑各个字符的权值出现频率。而哈夫曼编码采用了贪心策略使出现频率最高的字符的编码最短从而保证整体的编码长度最短。
2018-06-14 12:51:36 +08:00
2018-09-19 12:56:03 +08:00
首先生成一颗哈夫曼树,每次生成过程中选取频率最少的两个节点,生成一个新节点作为它们的父节点,并且新节点的频率为两个节点的和。选取频率最少的原因是,生成过程使得先选取的节点位于树的更低层,那么需要的编码长度更长,频率更少可以使得总编码长度更少。
2018-06-14 12:51:36 +08:00
2019-03-08 21:39:27 +08:00
生成编码时从根节点出发向左遍历则添加二进制位 0向右则添加二进制位 1直到遍历到叶子节点叶子节点代表的字符的编码就是这个路径编码。
<img src="index_files/3ff4f00a-2321-48fd-95f4-ce6001332151.png" width="400"/>
```java
public class Huffman {
    private class Node implements Comparable<Node> {
        char ch;
        int freq;
        boolean isLeaf;
        Node left, right;
        public Node(char ch, int freq) {
            this.ch = ch;
            this.freq = freq;
            isLeaf = true;
        }
        public Node(Node left, Node right, int freq) {
            this.left = left;
            this.right = right;
            this.freq = freq;
            isLeaf = false;
        }
        @Override
        public int compareTo(Node o) {
            return this.freq - o.freq;
        }
    }
    public Map<Character, String> encode(Map<Character, Integer> frequencyForChar) {
        PriorityQueue<Node> priorityQueue = new PriorityQueue<>();
        for (Character c : frequencyForChar.keySet()) {
            priorityQueue.add(new Node(c, frequencyForChar.get(c)));
        }
        while (priorityQueue.size() != 1) {
            Node node1 = priorityQueue.poll();
            Node node2 = priorityQueue.poll();
            priorityQueue.add(new Node(node1, node2, node1.freq + node2.freq));
        }
        return encode(priorityQueue.poll());
    }
    private Map<Character, String> encode(Node root) {
        Map<Character, String> encodingForChar = new HashMap<>();
        encode(root, "", encodingForChar);
        return encodingForChar;
    }
    private void encode(Node node, String encoding, Map<Character, String> encodingForChar) {
        if (node.isLeaf) {
            encodingForChar.put(node.ch, encoding);
            return;
        }
        encode(node.left, encoding + '0', encodingForChar);
        encode(node.right, encoding + '1', encodingForChar);
    }
}
```
# 参考资料
- Sedgewick, Robert, and Kevin Wayne. _Algorithms_. Addison-Wesley Professional, 2011.
---bottom---CyC---
![](index_files/766aedd0-1b00-4065-aa2b-7d31138df84f.png)
![](index_files/37e79a32-95a9-4503-bdb1-159527e628b8.png)
![](index_files/1a2f2998-d0da-41c8-8222-1fd95083a66b.png)
![](index_files/2a8e1442-2381-4439-a83f-0312c8678b1f.png)
![](index_files/0157d362-98dd-4e51-ac26-00ecb76beb3e.png)
![](index_files/220790c6-4377-4a2e-8686-58398afc8a18.png)
![](index_files/f8047846-efd4-42be-b6b7-27a7c4998b51.png)
![](index_files/864bfa7d-1149-420c-a752-f9b3d4e782ec.png)
![](index_files/f3080f83-6239-459b-8e9c-03b6641f7815.png)
![](index_files/33ac2b23-cb85-4e99-bc41-b7b7199fad1c.png)
![](index_files/72f0ff69-138d-4e54-b7ac-ebe025d978dc.png)
![](index_files/b84ba6fb-312b-4e69-8c77-fb6eb6fb38d4.png)
![](index_files/51fb761d-8ce0-4472-92ff-2f227ac7888a.png)
![](index_files/b20a3466-44b4-445e-87c7-dd4fb9ef44b2.png)
![](index_files/9d0a637c-6a8f-4f5a-99b9-fdcfa26793ff.png)
![](index_files/8f0cc500-5994-4c7a-91a9-62885d658662.png)
![](index_files/5d4a5181-65fb-4bf2-a9c6-899cab534b44.png)
![](index_files/bfbb11e2-d208-4efa-b97b-24cd40467cd8.png)
![](index_files/a4c17d43-fa5e-4935-b74e-147e7f7e782c.png)
![](index_files/f9f9f993-8ece-4da7-b848-af9b438fad76.png)
![](index_files/8ae4550b-f0cb-4e4d-9e2b-c550538bf230.png)
![](index_files/fbe54203-c005-48f0-8883-b05e564a3173.png)
![](index_files/107a6a2b-f15b-4cad-bced-b7fb95258c9c.png)
![](index_files/4d741402-344d-4b7c-be01-e57184bcad0e.png)
![](index_files/be7dca03-12ec-456b-8b54-b1b3161f5531.png)
![](index_files/dd15a984-e977-4644-b127-708cddb8ca99.png)
![](index_files/fa568fac-ac58-48dd-a9bb-23b3065bf2dc.png)
![](index_files/ff396233-1bb1-4e74-8bc2-d7c90146f5dd.png)
![](index_files/7f38a583-2f2e-4738-97af-510e6fb403a7.png)
![](index_files/ef280699-da36-4b38-9735-9b048a3c7fe0.png)
![](index_files/4f48e806-f90b-4c09-a55f-ac0cd641c047.png)
![](index_files/3086c248-b552-499e-b101-9cffe5c2773e.png)
![](index_files/9110c1a0-8a54-4145-a814-2477d0128114.png)
![](index_files/e2f0d889-2330-424c-8193-198edebecff7.png)
![](index_files/af4639f9-af54-4400-aaf5-4e261d96ace7.png)
![](index_files/08427d38-8df1-49a1-8990-e0ce5ee36ca2.png)
![](index_files/b4252c85-6fb0-4995-9a68-a1a5925fbdb1.png)
![](index_files/dbb8516d-37ba-4e2c-b26b-eefd7de21b45.png)
![](index_files/386cd64f-7a9d-40e6-8c55-22b90ee2d258.png)
![](index_files/54f1e052-0596-4b5e-833c-e80d75bf3f9b.png)
![](index_files/8587132a-021d-4f1f-a8ec-5a9daa7157a7.png)
![](index_files/2861e923-4862-4526-881c-15529279d49c.png)
![](index_files/1c4e8185-8153-46b6-bd5a-288b15feeae6.png)
![](index_files/3ff4f00a-2321-48fd-95f4-ce6001332151.png)