程序员面试金典(5):基本字符串压缩(python)

程序员面试金典(5):基本字符串压缩(python)

题目描述

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

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

测试样例

"aabcccccaaa"
返回:"a2b1c5a3"
"welcometonowcoderrrrr"
返回:"welcometonowcoderrrrr"
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Created by xuehz on 2017/8/21

class Zipper:
    def zipString(self, iniString):
        # write code here
        temp = iniString[0]
        count = 0
        ans = ''
        for x in iniString:
            if x == temp:
                count += 1
            else:
                ans += str(temp) + str(count) # 将上一步相同的字符进行统计
                temp = x #改变temp
                count = 1 
        ans += str(temp) + str(count)
        if len(ans) > len(iniString):
            return iniString
        else:
            return ans


if __name__ == '__main__':
    s = 'aabcccccaaa'
    s1 = 'welcometonowcoderrrrr'
    Z = Zipper()
    print Z.zipString(s)
    原文作者:xuehaozhe0526
    原文地址: https://blog.csdn.net/u013915133/article/details/77446603
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞