编程题]字符串压缩算法
时间限制:1秒
空间限制:32768K
1 2 3 4 |
|
输入描述:
任意长度字符串
输出描述:
压缩后的字符串
输入例子1:
xxxxyyyyyyzbbb
输出例子1:
3x5yz2b
代码:
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
while(sc.hasNext()){
String str = sc.nextLine();
String res = zipData(str);
System.out.println(res);
}
}
pu