-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path13thJune(I).java
More file actions
66 lines (63 loc) · 1.87 KB
/
Copy path13thJune(I).java
File metadata and controls
66 lines (63 loc) · 1.87 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
public class string_compression {
static int compress(char[] chars) {
String s = "";
int count = 1;
int i = 1;
if(chars.length==1){
return 1;
}
while(i<chars.length){
if(i==chars.length-1){
if(chars[i]==chars[i-1]){
s+=String.valueOf(chars[i-1]);
s+=String.valueOf(count+1);
i++;
}
else{
s+=String.valueOf(chars[i-1]);
if(count>1){
s+=String.valueOf(count);
}
s+=String.valueOf(chars[i]);
i++;
}
}
else if(chars[i-1]==chars[i]){
count++;
i++;
}
else{
if(count!=1){
s+=String.valueOf(chars[i-1]);
s+=String.valueOf(count);
count=1;
i++;
}
else if(count == 1){
s+=String.valueOf(chars[i-1]);
i++;
}
}
}
char[] res = s.toCharArray();
for(int x =0; x<res.length;x++){
chars[x]=res[x];
}
return res.length;
}
// for(char x: res){
// System.out.print(x+",");
// }
// System.out.println();
// for(char x : chars){
// System.out.print(x+",");
// }
// System.out.println();
public static void main(String[] args) {
// char[] chars = {'a','a','b','b','c','c','c'};
// char[] chars = {'a','b','b','b','b','b','b','b','b','b','b','b','b'};
// char[] chars = {'a','b','c'};
char[] chars = {'a','a','a','a','a','b'};
System.out.println(compress(chars));
}
}