基于哈夫曼编码的文件压缩
//Heap.h//堆类#pragma once#include<iostream>using namespace std;#include<vector>#include<cassert>//仿函数(函数对象)--建小堆template<typename T>struct Less{ bool operator()(const T& left,const T& right