- package test1203;
- public class Test02 {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
-
- String s1 ="abcdef";
- String s2 ="abdcd";
- String s3 =method(s1,s2);
- System.out.println(s3);
- }
- public static String method(String s1, String s2) {
- // TODO Auto-generated method stub
- if(s1.length()<s2.length()){
- String temp = s1;
- s1 = s2;
- s2 = temp;
- }
-
- for(int i = 0;i<s2.length();i++){
- for(int a =0,b=s2.length()-i;b<=s2.length();a++,b++){
- String s3 = s2.substring(a, b);
- if(s1.contains(s3))
- return s3;
- }
-
- }
-
- return null;
- }
- }
复制代码
|