C++: string压缩算法

74 篇文章 2 订阅

[编程题]压缩算法

时间限制:C/C++ 2秒,其他语言4秒

空间限制:C/C++ 256M,其他语言512M

小Q想要给他的朋友发送一个神秘字符串,但是他发现字符串的过于长了,于是小Q发明了一种压缩算法对字符串中重复的部分进行了压缩,对于字符串中连续的m个相同字符串S将会压缩为[m|S](m为一个整数且1<=m<=100),例如字符串ABCABCABC将会被压缩为[3|ABC],现在小Q的同学收到了小Q发送过来的字符串,你能帮助他进行解压缩么? 
 

输入描述:

输入第一行包含一个字符串s,代表压缩后的字符串。
S的长度<=1000;
S仅包含大写字母、[、]、|;
解压后的字符串长度不超过100000;
压缩递归层数不超过10层;

 

输出描述:

输出一个字符串,代表解压后的字符串。

 

输入例子1:

HG[3|B[2|CA]]F

 

输出例子1:

HGBCACABCACABCACAF

 

例子说明1:

HG[3|B[2|CA]]F−>HG[3|BCACA]F−>HGBCACABCACABCACAF

 

#include <iostream>
#include <string>
#include <stdlib.h>

using namespace std;

int main()
{
    string input, output;
    getline(cin, input);
    output = input;
    
    int end = string::npos;
    int begin = string::npos;
    end = output.find(']', 0);
    
    while(end != string::npos)
    {
        begin = output.rfind('[', end);
        
        if(begin != string::npos)
        {
            string convertor_old = output.substr(begin, end - begin + 1);
            int number_begin = convertor_old.find('[', 0) + 1;
            int number_end = convertor_old.find('|', number_begin) - 1;
            string convertor_number = convertor_old.substr(number_begin, number_end - number_begin + 1);
            int m = atoi(convertor_number.c_str());
            int letter_begin = convertor_old.find('|', 0) + 1;
            int letter_end = convertor_old.find(']', letter_begin) - 1;
            string convertor_letter = convertor_old.substr(letter_begin, letter_end - letter_begin + 1);
            string convertor_new;
            while(m--)
            {
                convertor_new += convertor_letter;
            }
            output.erase(begin, end - begin + 1);
            output.insert(begin, convertor_new);
            end = output.find(']', begin + convertor_new.size());
        }
        else
        {
            end = output.find(']', end);
        }
    }
    if(output.size() > 100000)
    {
        output.erase(100000, output.size() - 100000);
    }
    cout << output.c_str() << endl;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AllenSun-1990

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值