HDU1020 Encoding(字符串处理)

HDU1020 Encoding(字符串处理)

原题地址:http://acm.hdu.edu.cn/showproblem.php?pid=1020

题意

给你N组字符串(A~Z),对每一组字符串里面连续重复的字符进行统计个数,然后输出。

思路

水题。。。。。。。。

AC代码

#include <bits/stdc++.h>

using namespace std;

/**
 *  Created with IntelliJ Clion.
 *  @author  wanyu
 *  @Date: 2018-02-28
 *  @Time: 7:58
 *  To change this template use File | Settings | File Templates.
 * 
 */

int main() {
    int n;
    scanf("%d", &n);
    char c[10100];
    memset(c, '\0', sizeof(c));
    while (n--) {
        scanf("%s", c);
        auto len = strlen(c);
        char last = c[0];//保存上一个字符
        int num = 1;//计数
        string ans = "";
        for (int i = 1; i < len; i++) {
            if (c[i] == last) {//如果一样就加1
                num++;
            } else {
                if (num == 1) {
                    ans += last;
                } else {
                    ans += to_string(num) + last;
                }
                num = 1;
                last = c[i];
            }
        }
        //因为最后一组字符统计完还没有加入到答案中
        if (num == 1) {
            ans += last;
        } else {
            ans += to_string(num) + last;
        }
        cout << ans << endl;

    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值