32:行程长度编码

一、题目链接

http://noi.openjudge.cn/ch0107/32/

二、解题思路

三、实施步骤

四、Java程序

import java.util.Scanner;

public class Main {
    /**
     * 计算给定字符串的行程长度编码
     *
     * @param text String类型的对象,代表给定字符串
     * @return String类型的对象,代表text的行程长度编码
     */
    public String compressedCode(String text) {
        StringBuilder ans = new StringBuilder(); // text的行程长度编码
        char[] chars = text.toUpperCase().toCharArray(); // 将text的内容转存为大写字母数组处理
        int n = chars.length; // text中字符的个数
        int count; // 当前字符连续出现的次数
        int next; // 当前字符的后续位置
        /* 标记i代表chars数组中每个字符的位置,i从0开始,到n-1为止,更新步长为count */
        for (int i = 0; i < n; i = i + count) {
            count = 1; // 初始化当前字符连续出现的次数为1
            next = i + 1; // 当前字符的后续位置
            /* 在后续位置未超界且后续字符等于当前字符时 */
            while (next < n && chars[next] == chars[i]) {
                count++; // 当前字符连续出现的次数加1
                next++; // 准备检测下一个字符
            }
            ans.append("(").append(chars[i]).append(",").append(count).append(")"); // 生成当前字符的行程长度编码
        }
        return ans.toString(); // 返回ans的字符串形式
    }

    public static void main(String[] args) {
        Main test = new Main();
        Scanner input = new Scanner(System.in);
        String text = input.next();
        System.out.print(test.compressedCode(text));
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

江苏科技大学_计算机学院_潘磊

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值