18

我正在寻找一种压缩基于 ascii 的字符串的方法,有什么帮助吗?

我也需要解压。我试过 zlib 但没有帮助。

我该怎么做才能将字符串压缩成更小的长度?

代码:

def compress(request):
    if request.POST:
        data = request.POST.get('input')
        if is_ascii(data):
            result = zlib.compress(data)
            return render_to_response('index.html', {'result': result, 'input':data}, context_instance = RequestContext(request))
        else:
            result = "Error, the string is not ascii-based"
            return render_to_response('index.html', {'result':result}, context_instance = RequestContext(request))
    else:
        return render_to_response('index.html', {}, context_instance = RequestContext(request))
4

2 回答 2

29

使用压缩并不总是会减少字符串的长度!

考虑以下代码;

import zlib
import bz2

def comptest(s):
    print 'original length:', len(s)
    print 'zlib compressed length:', len(zlib.compress(s))
    print 'bz2 compressed length:', len(bz2.compress(s))

让我们在一个空字符串上试试这个;

In [15]: comptest('')
original length: 0
zlib compressed length: 8
bz2 compressed length: 14

因此zlib产生额外的 8 个字符和bz214 个字符。压缩方法通常在压缩数据前面放置一个“标题”,以供解压缩程序使用。此标头增加了输出的长度。

让我们测试一个单词;

In [16]: comptest('test')
original length: 4
zlib compressed length: 12
bz2 compressed length: 40

即使您会减去标题的长度,压缩并没有使单词变短。那是因为在这种情况下几乎没有什么可压缩的。字符串中的大多数字符只出现一次。现在是一个简短的句子;

In [17]: comptest('This is a compression test of a short sentence.')
original length: 47
zlib compressed length: 52
bz2 compressed length: 73

压缩输出再次大于输入文本。由于文字篇幅有限,里面的重复很少,所以不会很好地压缩。

您需要相当长的文本块才能真正进行压缩;

In [22]: rings = '''
   ....:     Three Rings for the Elven-kings under the sky, 
   ....:     Seven for the Dwarf-lords in their halls of stone, 
   ....:     Nine for Mortal Men doomed to die, 
   ....:     One for the Dark Lord on his dark throne 
   ....:     In the Land of Mordor where the Shadows lie. 
   ....:     One Ring to rule them all, One Ring to find them, 
   ....:     One Ring to bring them all and in the darkness bind them 
   ....:     In the Land of Mordor where the Shadows lie.'''

In [23]: comptest(rings)                       
original length: 410
zlib compressed length: 205
bz2 compressed length: 248
于 2012-10-13T11:39:09.097 回答
6

你甚至不需要你的数据是 ascii,你可以用任何东西给 zlib

>>> import zlib
>>> a='aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' # + any binary data you want
>>> print zlib.compress(a)
x�KL$
�
>>>

你在这里可能想要什么 - 压缩数据是 ascii 字符串?我在这里吗?
如果是这样 - 你应该知道你有非常小的字母来编码压缩数据=>所以你会使用更多的符号。

例如,以 base64 编码二进制数据(您将获得 ascii 字符串),但您将为此多使用约 30% 的空间

于 2012-10-13T09:44:20.470 回答