资源简介

找出一个字符串中出现次数最多的子字符串,并返回重复次数。使用java编写

资源截图

代码片段和文件信息

public class ComString{
private  int maxCount=1;
private String longest=““;
public ComString(){
}
public int m1(String str){   
int len =str.length();
for(int i =1;i for(int pos1 = 0; pos1 < len-i-1; pos1++){
int count=1;
for(int pos2 = pos1 + 2; pos2 < 

评论

共有 条评论