Description

Implement a method to perform basic string compression using the counts of repeated characters. For example, the string aabcccccaaa would become a2b1c5a3.

If the "compressed" string would not become smaller than the original string, your method should return the original string.

You can assume the string has only upper and lower case letters (a-z).

Example

str=aabcccccaaa return a2b1c5a3
str=aabbcc return aabbcc
str=aaaa return a4

解题:字符串压缩问题。用两个临时变量保存字符,一个变量count来计数,pre保存前一个字符,p保存当前字符,如果p不等于pre,将pre和count连到结果上去,并且跟新pre为p,一次循环即可。另外注意对最后一个(或几个相同的)字符进行处理。

public class Solution {
/**
* @param str: a string
* @return: a compressed string
*/
public String compress(String str) {
// write your code here
if(str == null)
return null;
String res = "";
int count = 0;
char pre = (byte)0;//前一个字符
char p = (byte)0;//当前字符
for(int i = 0; i < str.length(); i++){
if(pre == 0 && p == 0){
//初始化
pre = str.charAt(i);
p = str.charAt(i);
count++;
continue;//下一轮循环
}
//不是开头字符
p = str.charAt(i);
if(p == pre){
count++;
}else{
res = res + pre + String.valueOf(count);
pre = p;
count = 1;
}
}
//循环结束,处理最后一个(类)字符
res = res + pre + String.valueOf(count); if(res.length() < str.length()){
return res;
}else{
return str;
}
}
}

最新文章

  1. 我的敏捷、需求分析、UML、软件设计电子书 - 下载(持续更新中)
  2. Ajax+PHP+MySQL 登陆示例
  3. http://blog.sina.com.cn/s/blog_705cc5dd01012ehb.html
  4. 20145305解佳玲 《Java程序设计》第1周学习总结
  5. Chapter13:拷贝控制
  6. C++ 字符串各种处理
  7. 深入理解C#第二版笔记
  8. MarkDown使用 (三)表格
  9. boost库在工作(33)网络服务端之三
  10. vijos1062题解
  11. Linux系统上安装JDK和Tomcat服务器
  12. CEF小白人系列1-认识CEF
  13. 关于ajax的与后台Controller的交互 后台拿不到值
  14. Java_异常以及处理
  15. java中List&lt;Map&lt;String, Object&gt;&gt;关于null的判断
  16. js cookie缓存处理
  17. ios 类别(category)
  18. linux和windows时间同步问题(UTC&amp;localtime)
  19. Linux free命令详解
  20. 尾递归与Continuation

热门文章

  1. 【题解】洛谷P2375 [NOI2014] 动物园(KMP)
  2. 第26章 FMC—扩展外部SDRAM
  3. iOS:文件操作相关(18-03-23更)
  4. Visual Studio中添加API断点
  5. 外键参数 onupdate,ondelete等(cascade,no adcion,set null,restrict)
  6. MySQL学习之流程结构
  7. C# Server.MapPath的使用方法
  8. vue使用axios调用豆瓣API跨域问题
  9. 对布局定位设置-position
  10. Numpy 01