码迷,mamicode.com
首页 > 其他好文 > 详细

443. String Compression - LeetCode

时间:2018-08-10 16:01:55      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:val   new   一个   leetcode   res   png   value   return   有序数组   

Question

443.?String Compression

技术分享图片

Solution

题目大意:把一个有序数组压缩,

思路:遍历数组

Java实现:

public int compress(char[] chars) {
    if (chars.length == 0) return 0;

    StringBuilder sb = new StringBuilder();
    char cur = chars[0];
    int sum = 1;
    for (int i = 1; i <= chars.length; i++) {
        if (i < chars.length && chars[i] == cur) {
            sum++;
        } else {
            sb.append(String.valueOf(cur));
            if (sum > 1) {
                sb.append(sum);
            }
            if (i < chars.length) {
                cur = chars[i];
                sum = 1;
            }
        }
    }
    char[] compressChar = sb.toString().toCharArray();
    for (int i = 0; i < compressChar.length; i++) {
        chars[i] = compressChar[i];
    }
    return sb.length();
}

443. String Compression - LeetCode

标签:val   new   一个   leetcode   res   png   value   return   有序数组   

原文地址:https://www.cnblogs.com/okokabcd/p/9454890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!