-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlz78.py
67 lines (48 loc) · 1.57 KB
/
lz78.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# LZ78 encoding
def codeword(letter):
# Return the ASCII value of the letter
return ord(letter)
def decode(code):
# Return the letter corresponding to the ASCII value
return chr(code)
# sentence = 'wabba wabba wabba wabba woo woo woo'
sentence = raw_input('Enter the string to encode and decode: ')
# Encoding
# Define an empty dictionary with empty string at index position 1
# Our dictionary index starts from 1
dictionary = ['']
encoded = []
print "\n"
print "Code \t\tIndex \tEntry"
print "-----------------------------"
i = 0
while i < len(sentence):
j = i
i = i + 1
# If this is the last letter, just encode the letter
if j == len(sentence) - 1:
encoded.append((0, codeword(sentence[j])))
combined = ''
while j < len(sentence):
next_letter = sentence[j]
if combined + next_letter not in dictionary:
dictionary.append(combined + next_letter)
encoded.append((dictionary.index(combined), codeword(next_letter)))
print dictionary.index(combined), "\t", codeword(next_letter), "\t",
print dictionary.index(combined + next_letter), "\t", (combined + next_letter)
# Change i to j + 1 to start from the next letter
i = j + 1
break
else:
combined = combined + next_letter
j = j + 1
print "\n"
print "Encoded String: ", encoded
# Decoding
dictionary = ['']
decoded = ''
for (code, codeword) in encoded:
string = dictionary[code] + decode(codeword)
dictionary.append(string)
decoded += string
print decoded