@@ -58,7 +58,7 @@ class SimpleCompression:
58
58
59
59
def uncompress (self , bits ):
60
60
string = ' '
61
- for i in xrange (0 , len (bits), self .bit_len):
61
+ for i in range (0 , len (bits), self .bit_len):
62
62
string += self .b2s[bits[i:i + self .bit_len]]
63
63
return string
64
64
@@ -71,8 +71,14 @@ class HuffmanCompression:
71
71
self .coding = ' '
72
72
self .left = self .right = None
73
73
74
- def __cmp__ (self , other ):
75
- return self .val - other.val
74
+ def __eq__ (self , other ):
75
+ return self .val == other.val
76
+
77
+ def __lt__ (self , other ):
78
+ return self .val < other.val
79
+
80
+ def __gt__ (self , other ):
81
+ return self .val > other.val
76
82
77
83
def __init__ (self , string ):
78
84
self .string = string
@@ -169,6 +175,4 @@ Huffman Compression-compress rate: 45%
169
175
简单压缩: 根据字符串出现的字符,将ASCII替换成更短的表示形式
170
176
霍夫曼压缩: 根据字符串出现频率,构建Trie树, 对每个tree node进行定义,使得频率越高的字符离root节点越近
171
177
172
-
173
-
174
178
有关霍夫曼编码的具体步骤可参考 [ Huffman 编码压缩算法 | 酷 壳 - CoolShell.cn] ( http://coolshell.cn/articles/7459.html ) 和 [ 霍夫曼编码 - 维基百科,自由的百科全书] ( http://zh.wikipedia.org/wiki/%E9%9C%8D%E5%A4%AB%E6%9B%BC%E7%BC%96%E7%A0%81 ) ,清晰易懂。
0 commit comments