File tree 1 file changed +0
-7
lines changed
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -59,25 +59,18 @@ def __init__(self, arr):
59
59
60
60
# dictionaries to store huffman table
61
61
self .__value_to_bitstring = dict ()
62
- self .__bitstring_to_value = dict ()
63
62
64
63
def value_to_bitstring_table (self ):
65
64
if len (self .__value_to_bitstring .keys ()) == 0 :
66
65
self .__create_huffman_table ()
67
66
return self .__value_to_bitstring
68
67
69
- def bitstring_to_value_table (self ):
70
- if len (self .__bitstring_to_value .keys ()) == 0 :
71
- self .__create_huffman_table ()
72
- return self .__bitstring_to_value
73
-
74
68
def __create_huffman_table (self ):
75
69
def tree_traverse (current_node , bitstring = '' ):
76
70
if current_node is None :
77
71
return
78
72
if current_node .is_leaf ():
79
73
self .__value_to_bitstring [current_node .value ] = bitstring
80
- self .__bitstring_to_value [bitstring ] = current_node .value
81
74
return
82
75
tree_traverse (current_node .left_child , bitstring + '0' )
83
76
tree_traverse (current_node .right_child , bitstring + '1' )
You can’t perform that action at this time.
0 commit comments