题解 | #压缩字符串(一)#

压缩字符串(一)

http://www.nowcoder.com/practice/c43a0d72d29941c1b65c857d8ac9047e

import java.util.*;


public class Solution {

    public String compressString (String param) {
// write code here
        char []str=param.toCharArray();
      //保存结果
        StringBuffer res=new StringBuffer();
        if(str.length==0)return res.toString();
        res.append(str[0]);
        int count=1;//记录字母数
        for(int i=1;i<str.length;i++){
            if(str[i]==str[i-1]){
                count++;
            }else{
                if(count!=1){
                    res.append(count);
                    count=1;
                    res.append(str[i]);
                }else{
                    res.append(str[i]);
                }
            }
        }
      //如果最后不是1,拼接上
        if(count!=1){
             res.append(count);
        }
        
        return res.toString();
        
    }
}
全部评论

相关推荐

11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
牛客771574427号:恭喜你,华杰
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务