首页 > 代码库 > 重复字符的压缩
重复字符的压缩
对输入字符串进行压缩,输入"aaabcccdde",输出"3ab3c2de",即对连续出现的字符进行压缩。
#include <iostream> #include <cstring> #include <cstdlib> using namespace std; char* stringCompress(char a[]) { int mark=0; char temp=a[0]; int len=strlen(a); //int count[len]={0}; int count=1; //string str; char b[len+1]; int j=0; for(int i=1;i<len;i++) { if(a[i]==temp) count++; else{ if(count!=1) b[j++]=count+‘0‘; b[j++]=temp; count=1; temp=a[i]; } } if(count!=1) b[j++]=count+‘0‘; b[j]=temp; b[++j]=‘\0‘; return b; } int main() { char a[100]; cin.getline(a,100); cout<<a<<endl; char* res=stringCompress(a); cout<<res<<endl; system("pause"); return 0; }
重复字符的压缩
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。