- /*
- 4,获取两个字符串中最大相同子串。第一个动作:将短的那个串进行长度一次递减的子串打印。
- "abcwerthelloyuiodef"
- "cvhellobnm"
- 思路:
- 1,将短的那个子串按照长度递减的方式获取到。
- 2,将每获取到的子串去长串中判断是否包含,
- 如果包含,已经找到!。
- */
- class StringTest3
- {
- /*
- 练习四。
- */
- public static String getMaxSubString(String s1,String s2)
- {
- String max = "",min = "";
- max = (s1.length()>s2.length())?s1: s2;
- 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))//if(s1.indexOf(temp)!=-1)
- return temp;
- }
- }
- return "";
- }
- public static void main(String[] args)
- {
- String s1 = "cvaanm";
- String s2 = "cvhellobnm";
- sop(getMaxSubString(s2,s1));
- }
- public static void sop(String str)
- {
- System.out.println(str);
- }
- }
复制代码
经过验证,毕老师的代码只适用两个字符串有一个最长字符串的情况,如果有两个同样长度的最长字符串,那么只能输出靠前面的一个,因为34行的return使getMaxSubString方法结束,所以结束getMaxSubString方法的方式不能使用return,而要通过外循环条件控制循环结束,我编写代码请看一楼(主要是改了for循环的结束方式)。 |