码迷,mamicode.com
首页 > 其他好文 > 详细

PTA乙级(1078 字符串压缩与解压 (20分))

时间:2020-01-16 23:44:37      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:ios   getchar   cin   ring   for   pac   ref   pre   etc   

1078 字符串压缩与解压 (20分)

https://pintia.cn/problem-sets/994805260223102976/problems/994805262018265088

 1 #include <cstdio>
 2 #include <cstring>
 3 #include <string>
 4 #include <iostream>
 5 #include <algorithm>
 6 using namespace std;
 7 int main()
 8 {
 9     string a,b,num;
10     char chr;
11     cin>>chr;
12     getchar();
13     getline(cin,a);
14     int len=a.length();
15     int cnt=1;
16     if(chr==D)
17     {
18         for(int i=0;i<len;i++)
19         {
20             if(a[i]>=0&&a[i]<=9) num+=a[i];
21             else {
22                if(num.length()>0) cnt=stoi(num);
23                 while(cnt--) cout<<a[i];
24                 cnt=1;
25                 num="";
26             }
27         }
28     }else if(a.length()>0)
29     {
30         char pre=a[0];
31         for(int i=1;i<len;i++)
32         {
33             if(a[i]==pre) cnt++;
34             else {
35                 if(cnt>1) cout<<cnt;
36                 cout<<pre;
37                 cnt=1;
38                 pre=a[i];
39             }
40         }
41         if(cnt>1) cout<<cnt;
42         cout<<pre<<endl;
43     }
44     return 0;
45 }

PTA乙级(1078 字符串压缩与解压 (20分))

标签:ios   getchar   cin   ring   for   pac   ref   pre   etc   

原文地址:https://www.cnblogs.com/jianqiao123/p/12203635.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!