其他分享
首页 > 其他分享> > 基本字符串压缩

基本字符串压缩

作者:互联网

题目描述
利用字符重复出现的次数,编写一个方法,实现基本的字符串压缩功能。比如,字符串“aabcccccaaa”经压缩会变成“a2b1c5a3”。若压缩后的字符串没有变短,则返回原先的字符串。

给定一个string iniString为待压缩的串(长度小于等于10000),保证串内字符均由大小写英文字母组成,返回一个string,为所求的压缩后或未变化的串。

测试样例
"aabcccccaaa"
返回:"a2b1c5a3"
"welcometonowcoderrrrr"
返回:"welcometonowcoderrrrr"

# -*- coding:utf-8 -*-
class Zipper:
    def zipString(self, iniString):
        res = ''
        current = iniString[0]
        num = 1
        for i in range(1,len(iniString)):
            if iniString[i]==current:
                num += 1
            else:
                res += current + str(num)
                current,num = iniString[i],1
        res += current + str(num)
        return res if len(res)<len(iniString) else iniString

标签:基本,iniString,res,压缩,current,num,字符串
来源: https://www.cnblogs.com/bernieloveslife/p/11104638.html