算法练习(字符串压缩)

通过键盘输入一串小写字母(a~z)组成的字符串。请编写一个字符串压缩程序,将字符串中连续出席的重复字母进行压缩,并输出压缩后的字符串。
压缩规则:
    1、仅压缩连续重复出现的字符。比如字符串"abcbc"由于无连续重复字符,压缩后的字符串还是"abcbc"。
    2、压缩字段的格式为"字符重复的次数+字符"。例如:字符串"xxxyyyyyyz"压缩后就成为"3x6yz"。
要求实现函数: 


#include<iostream>

#include<string>
#include<stdlib.h>
using namespace std;


typedef struct
{
int head;
int rear;
char ch;
int count;
}charinf;


string compress(string input)
{
string temp=input;
char out[10];
int i=0;
charinf charinfom,*charinfo;
charinfo=&charinfom;
while(temp[i]!='\0')
{
charinfo->ch=temp[i];
charinfo->head=i;
charinfo->count=1;


while(charinfo->ch == temp[i+1])
{
charinfo->count++;
i++;
}
i=i+1;


if(charinfo->count > 1)
{


itoa(charinfo->count,out,10);
temp.replace(charinfo->head,charinfo->count-1,out);
i=i-charinfo->count+2;
}
}
    return(temp);
}


int main()
{
string A;
string B;
cout<<"input string: ";
cin>>A;
cout<<A<<endl;
cout<<"result:"<<compress(A)<<endl;
return 1;


}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值