上个周做了一道MISC题和两道Crypto题。感觉还是总结一下比较好,毕竟做题时查了很多大佬的博客和一些知识点。1、Crypto-哈夫曼树和哈夫曼编码刚看到这道题时我毫无头绪。毕竟在写这篇博客时,还没...
优雅实现哈夫曼编码
#include<bits/stdc++.h>using namespace std;struct Node { char data; int freq; Node *lChild, *r...
优雅实现哈夫曼编码
#include<bits/stdc++.h>using namespace std;struct Node { char data; int freq; Node *lChild, *r...