题解 | #公共子串计算#

公共子串计算

https://www.nowcoder.com/practice/98dc82c094e043ccb7e0570e5342dd1b

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while (in.hasNext()) {
            String str1 = in.nextLine().toLowerCase();
            String str2 = in.nextLine().toLowerCase();
            if (str1.length() > str2.length()) {
                String gg = str1;
                str1 = str2;
                str2 = gg;
            }
            int sum = 0;
            for (int i = 0 ; i < str1.length(); i++) {
                for (int j = str1.length(); j > i; j--) {
                    String gg = str1.substring(i, j);
                    if (str2.contains(gg)) {
                        if (j - i > sum) sum = j - i;
                    }
                }
            }
            System.out.println(sum);
        }
    }
}

全部评论

相关推荐

废铁汽车人:秋招真是牛鬼蛇神齐聚一堂
点赞 评论 收藏
分享
offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务