本帖最后由 smile2015 于 2015-3-28 00:50 编辑
思路: 1,将短的那个子串按照长度递减的方式获取到。
2,将每获取到的子串去长串中判断是否包含, 如果包含,已经找到!。
代码如下,毕老师的课程里面有这道题,希望认真看看。
public class StringTest3 {
public static void main(String[] args)
{
String s1="hello";//在这里你可以将两个字符串分别放入s1和s2中
String s2="cvhellobnm";
sop(getMaxSubString(s2,s1));
}
public static void sop(String str)
{
System.out.println(str);
}
public static String getMaxSubString(String s1,String s2)
{
String max="",min="";
max=(s1.length()>s2.length())?s2:s1;
min=(max==s1)?s2:s1;
sop("max="+max+"...min="+min);
for(int x=0;x<min.length();x++)
{
for(int y=0,z=min.length()-x;z!=min.length()+1; y++,z++)
{
String temp=min.substring(y,z);
sop(temp);
if(max.contains(temp)) //判断包含的字符串
return temp;
}
}
return "";
}
}
|