高效算法——06哈夫曼編碼(Python)

06哈夫曼編碼   複雜度: O(nlogn)算法 算法: app #coding=utf-8 """ 算法:哈夫曼編碼 做者:lph-China 時間:2019/7/15 """ def huffman(freq): h = [] for a in freq: heappush(h, (freq[a], a)) while len(h)
相關文章
相關標籤/搜索