Leetcode 443. String Compression

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

String Compression

2. Solution

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
class Solution {
public:
int compress(vector<char>& chars) {
if(chars.size() == 0 || chars.size() == 1) {
return chars.size();
}
int count = 1;
int index = 0;
char current = chars[0];
for(int i = 1; i < chars.size(); i++) {
if(chars[i] != current) {
chars[index] = current;
index++;
if(count > 1) {
string temp = to_string(count);
for(char ch : temp) {
chars[index] = ch;
index++;
}
}
count = 1;
current = chars[i];
}
else {
count++;
}
}
chars[index] = current;
index++;
if(count > 1) {
for(char ch : to_string(count)) {
chars[index] = ch;
index++;
}
}
return index;
}
};

Reference

  1. https://leetcode.com/problems/string-compression/description/
如果有收获,可以请我喝杯咖啡!