基於Huffman編碼的壓縮軟件的Python實現

哈夫曼編碼是利用貪心算法進行文本壓縮的算法,其算法思想是首先統計文件中各字符出現的次數,保存到數組中,然後將各字符按照次數升序排序,挑選次數最小的兩個元素進行連結形成子樹,子樹的次數等於兩節點的次數之和,接着把兩個元素從數組刪除,將子樹放入數組,重新排序,重複以上步驟。爲了解壓,在壓縮時首先往文件中填入huffman編碼的映射表的長度,該表的序列化字符串,編碼字符串分組後最後一組的長度(編碼後字符串長度模上分組長度),最後再填充編碼後的字符串。本算法中以一個字節,8位作爲分組長度,將編碼後二進制字符串一一分組。代碼如下:

__author__ = 'linfuyuan'
import struct
import pickle

type = int(raw_input('please input the type number(0 for compress, 1 for decompress):'))
file = raw_input('please input the filepath:')


class Node:
    def __init__(self):
        self.value = ''
        self.left = None
        self.right = None
        self.frequency = 0
        self.code = ''


# let the unique value be the key in the map
def change_value_to_key(huffmap):
    map = {}
    for (key, value) in huffmap.items():
        map[value] = key
    return map


if type == 0:
    origindata = ''
    # count the frequency of each letter
    lettermap = {}

    def give_code(node):
        if node.left:
            node.left.code = '%s%s' % (node.code, '0')
            give_code(node.left)
        if node.right:
            node.right.code = '%s%s' % (node.code, '1')
            give_code(node.right)


    def print_code(node):
        if not node.left and not node.right:
            print "%s %s" % (node.value, node.code)
        if node.left:
            print_code(node.left)
        if node.right:
            print_code(node.right)


    def save_code(map, node):
        if not node.left and not node.right:
            map[node.value] = node.code
        if node.left:
            save_code(map, node.left)
        if node.right:
            save_code(map, node.right)


    with open(file)as f:
        for line in f.readlines():
            origindata += line
            for j in line:
                if lettermap.get(j):
                    lettermap[j] += 1
                else:
                    lettermap[j] = 1
    nodelist = []
    for (key, value) in lettermap.items():
        node = Node()
        node.value = key
        node.frequency = value
        nodelist.append(node)
    nodelist.sort(cmp=lambda n1, n2: cmp(n1.frequency, n2.frequency))
    for i in range(len(nodelist) - 1):
        node1 = nodelist[0]
        node2 = nodelist[1]
        node = Node()
        node.left = node1
        node.right = node2
        node.frequency = node1.frequency + node2.frequency
        nodelist[0] = node
        nodelist.pop(1)
        nodelist.sort(cmp=lambda n1, n2: cmp(n1.frequency, n2.frequency))
    # give the code
    root = nodelist[0]
    give_code(root)
    huffman_map = {}
    # save the node code to a map
    save_code(huffman_map, root)
    code_data = ''
    for letter in origindata:
        code_data += huffman_map[letter]
    output_data = ''
    f = open('%s_compress' % file, 'wb')
    huffman_map_bytes = pickle.dumps(huffman_map)
    f.write(struct.pack('I', len(huffman_map_bytes)))
    f.write(struct.pack('%ds' % len(huffman_map_bytes), huffman_map_bytes))
    f.write(struct.pack('B', len(code_data) % 8))
    for i in range(0, len(code_data), 8):
        if i + 8 < len(code_data):
            f.write(struct.pack('B', int(code_data[i:i + 8], 2)))
        else:
            # padding
            f.write(struct.pack('B', int(code_data[i:], 2)))
    f.close()
    print 'finished compressing'
if type == 1:
    f = open(file, 'rb')
    size = struct.unpack('I', f.read(4))[0]
    huffman_map = pickle.loads(f.read(size))
    left = struct.unpack('B', f.read(1))[0]
    data = f.read(1)
    datalist = []

    while not data == '':
        bdata = bin(struct.unpack('B', data)[0])[2:]
        datalist.append(bdata)
        data = f.read(1)
    f.close()
    for i in range(len(datalist) - 1):
        datalist[i] = '%s%s' % ('0' * (8 - len(datalist[i])), datalist[i])
    datalist[-1] = '%s%s' % ('0' * (left - len(datalist[-1])), datalist[-1])
    encode_data = ''.join(datalist)
    current_code = ''
    huffman_map = change_value_to_key(huffman_map)
    f = open('%s_origin' % file, 'w')
    for letter in encode_data:
        current_code += letter
        if huffman_map.get(current_code):
            f.write(huffman_map[current_code])
            current_code = ''
    f.close()

    print 'finished decompressing'
raw_input('please press any key to quit')



代碼中有用到pickle模塊進行對象序列化,還有struct模塊進行讀寫二進制文件。

由於算法中運算量最⼤的地⽅在於循環⾥嵌套了排序,故算法的時間複雜度是O(n2logn)

經過壓縮後,文件大⼩小分別爲110KB931KB。原來⼤⼩爲190KB2.1MB,壓縮效果明顯。

希望對大家有用。

發佈了96 篇原創文章 · 獲贊 86 · 訪問量 96萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章