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

140 lines
5.6 KiB
Markdown
Raw Normal View History

2019-03-27 20:46:47 +08:00
# 汉诺塔
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
<img src="index_files/54f1e052-0596-4b5e-833c-e80d75bf3f9b.png" width="300"/>
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
有三个柱子分别为 from、buffer、to。需要将 from 上的圆盘全部移动到 to 并且要保证小圆盘始终在大圆盘上。
2019-03-08 23:06:28 +08:00
这是一个经典的递归问题,分为三步求解:
2019-03-27 20:46:47 +08:00
  n-1 个圆盘从 from -> buffer
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
<img src="index_files/8587132a-021d-4f1f-a8ec-5a9daa7157a7.png" width="300"/>
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
  1 个圆盘从 from -> to
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
<img src="index_files/2861e923-4862-4526-881c-15529279d49c.png" width="300"/>
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
  n-1 个圆盘从 buffer -> to
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
<img src="index_files/1c4e8185-8153-46b6-bd5a-288b15feeae6.png" width="300"/>
2019-03-08 23:06:28 +08:00
如果只有一个圆盘,那么只需要进行一次移动操作。
2019-03-27 20:46:47 +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 次。
2019-03-08 23:06:28 +08:00
```java
2019-03-27 20:46:47 +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);
    }
    public static void main(String[] args) {
        Hanoi.move(3, "H1", "H2", "H3");
    }
2019-03-08 23:06:28 +08:00
}
```
```html
2019-03-27 20:46:47 +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
2019-03-08 23:06:28 +08:00
```
2019-03-27 20:46:47 +08:00
# 哈夫曼编码
2019-03-08 23:06:28 +08:00
根据数据出现的频率对数据进行编码,从而压缩原始数据。
例如对于一个文本文件,其中各种字符出现的次数如下:
2019-03-27 20:46:47 +08:00
- a : 10
- b : 20
- c : 40
- d : 80
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
可以将每种字符转换成二进制编码例如将 a 转换为 00b 转换为 01c 转换为 10d 转换为 11。这是最简单的一种编码方式没有考虑各个字符的权值出现频率。而哈夫曼编码采用了贪心策略使出现频率最高的字符的编码最短从而保证整体的编码长度最短。
2019-03-08 23:06:28 +08:00
首先生成一颗哈夫曼树,每次生成过程中选取频率最少的两个节点,生成一个新节点作为它们的父节点,并且新节点的频率为两个节点的和。选取频率最少的原因是,生成过程使得先选取的节点位于树的更低层,那么需要的编码长度更长,频率更少可以使得总编码长度更少。
2019-03-27 20:46:47 +08:00
生成编码时从根节点出发向左遍历则添加二进制位 0向右则添加二进制位 1直到遍历到叶子节点叶子节点代表的字符的编码就是这个路径编码。
2019-03-08 23:06:28 +08:00
2019-03-27 20:46:47 +08:00
<img src="index_files/3ff4f00a-2321-48fd-95f4-ce6001332151.png" width="400"/>
2019-03-08 23:06:28 +08:00
```java
2019-03-27 20:46:47 +08:00
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);
    }
2019-03-08 23:06:28 +08:00
}
```
2019-03-27 20:46:47 +08:00
---bottom---CyC---
![](index_files/54f1e052-0596-4b5e-833c-e80d75bf3f9b.png)
![](index_files/54f1e052-0596-4b5e-833c-e80d75bf3f9b.png)
![](index_files/8587132a-021d-4f1f-a8ec-5a9daa7157a7.png)
![](index_files/8587132a-021d-4f1f-a8ec-5a9daa7157a7.png)
![](index_files/2861e923-4862-4526-881c-15529279d49c.png)
![](index_files/2861e923-4862-4526-881c-15529279d49c.png)
![](index_files/1c4e8185-8153-46b6-bd5a-288b15feeae6.png)
![](index_files/1c4e8185-8153-46b6-bd5a-288b15feeae6.png)
![](index_files/3ff4f00a-2321-48fd-95f4-ce6001332151.png)
![](index_files/3ff4f00a-2321-48fd-95f4-ce6001332151.png)