首页 > 其他 > 详细

查找字符串中最长重复字符的子串

时间:2015-01-17 13:56:21      阅读:164      评论:0      收藏:0      [点我收藏+]

temppos:记录子字符串开始的下标

list:存放重复的子字符串

public class RepeatString {


private static void longestdupString(String s) {
if (s == null || s.length() == 0) {
return;
}


char temp = s.charAt(0);
int temppos = 0;
List<String> list = new ArrayList<String>();
for (int i = 1; i < s.length(); i++) {
if (i == s.length() -1) {
if (list.size() == 0) {
list.add(s);
break;
}else {
if ((i+1 - temppos) > list.get(0).length()) {
list.clear();
list.add(s.substring(temppos, i+1));
}else if((i+1 - temppos) == list.get(0).length()){
list.add(s.substring(temppos, i+1));
}else {

}
}
}
if (s.charAt(i) == temp) {
continue;
}

if (list.size() == 0) {
list.add(s.substring(temppos, i));
} else {
if ((i - temppos) > list.get(0).length()) {
list.clear();
list.add(s.substring(temppos, i));
}else if((i - temppos) == list.get(0).length()){
list.add(s.substring(temppos, i));
}else {

}
}
temp = s.charAt(i);
temppos = i;
}

for (int i = 0; i < list.size(); i++) {
System.out.println(list.get(i));
}
}

public static void main(String[] args){
longestdupString("aaaaabbcaadddddseefgfsggggsssss");
}

查找字符串中最长重复字符的子串

原文:http://blog.csdn.net/zjj2006/article/details/42804557

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!