题解 | #字符串压缩算法#

字符串压缩算法

http://www.nowcoder.com/practice/2ff3d36b4d4a4bfeb1a7d64f3cc55c15

import java.util.Scanner;

public class Main{

public static void main(String[] args) {
    Scanner in = new Scanner(System.in);
    String str = in.nextLine();
    String res = compress(str);
    System.out.println(res);
}

public static String compress(String str){
    int count = 0;
    String res = "";
    if(str.length()==1){
        res = str;
    }
    else{
        for(int i=1; i<str.length(); i++){
            String s = str.substring(i, i+1);


            if(i==str.length()-1){
                if(s.equals(str.substring(i-1, i))){
                    count++;
                    if(count!=0){
                        res += count + str.substring(i-1, i);
                    }
                    else{
                        res += str.substring(i-1, i);
                    }
                }
                else{
                    if(count!=0){
                        res += count + str.substring(i-1, i);
                    }
                    else{
                        res += str.substring(i-1, i);
                    }
                    res += s;
                }
            }
            else{
                if(s.equals(str.substring(i-1, i))){
                    count++;
                }
                else{
                    if(count!=0){
                        res += count + str.substring(i-1, i);
                    }
                    else{
                        res += str.substring(i-1, i);
                    }
                    count = 0;
                }
            }

        }
    }

    return res;
}

}

全部评论

相关推荐

霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
joe2333:怀念以前大家拿华为当保底的日子
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务