整理字符

题目描述

Given a string containing only ‘A’ - ‘Z’, we could encode it using the following method:
1. Each sub-string containing k same characters should be encoded to “kX” where “X” is the only character in this sub-string.
2. If the length of the sub-string is 1, ‘1’ should be ignored.
The first line contains an integer N (1 <= N <= 100) which indicates the number of test cases. The next N lines contain N strings. Each string consists of only ‘A’ - ‘Z’ and the length is less than 10000.


给定一个字符串包含只有“一个”——“Z”,我们可以使用下面的编码方法:
1。每个子串包含相同k字符应编码“kX”,“X”是唯一在这个子串字符。
2。如果子串的长度是1,’ 1 ‘应该被忽略。

样例输入

第一行包含一个整数N (1 <= N <= 100),表示测试用例的数量。下一个N行包含N个字符串。每个字符串只包含“A”-“Z”,长度小于10000。

考核知识点

数组的灵活运用。

解题思路

首先定义字符串数组,之后进行排查。
:一个字符串内可以出现多次相同的字符。

参考答案(附关键注释)

#include<stdio.h>
#include<string.h>
int main()
{
    int n,i,num;
    char a[10001];//定义一个字符串
    scanf("%d",&n);
    while(n--)
    {
        num=1;//每个字符本身就是它的第一次出现
        scanf("%s",a);
        for(i=0; i<strlen(a); i++)
        {
            if(a[i]==a[i+1])//判断相邻的字符是否相同
            {
                num++;
            }
            else//当不同时,输出已经统计好的字符串
            {
                if(num<=1)
                {
                    printf("%c",a[i]);
                    num=1;
                }
                else
                {
                    printf("%d%c",num,a[i]);
                    num=1;
                }
            }
        }
        printf("\n");
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值