题解 | #查找两个字符串a,b中的最长公共子串#

查找两个字符串a,b中的最长公共子串

http://www.nowcoder.com/practice/181a1a71c7574266ad07f9739f791506

java dp

import java.util.*;
public class Main {
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
            while(sc.hasNextLine()) {
                String a = sc.nextLine();
                String b = sc.nextLine();
                String longStr = (a.length() > b.length())? a:b;
                String shortStr = (a.length() < b.length())? a:b;
                int[][] dp = new int[shortStr.length()+1][longStr.length()+1];
                int res = 0;
                int index = 0;
                for (int i = 1; i <= shortStr.length(); i++ ) {
                    for (int j = 1; j <= longStr.length(); j++) {
                        if (shortStr.charAt(i-1) == longStr.charAt(j - 1)) {
                            dp[i][j] = dp[i-1][j-1] +1;
                            if (dp[i][j] > res) {
                                res = dp[i][j];
                                index = i;
                            }
                        } 
                    }
                    
                }
                
                if (res > 0) {
                    System.out.println(shortStr.substring(index - res,index));
                }
            }
        }
}
全部评论

相关推荐

11-24 11:23
门头沟学院 C++
点赞 评论 收藏
分享
菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
11-09 01:22
已编辑
东南大学 Java
高级特工穿山甲:羡慕,我秋招有家企业在茶馆组织线下面试,约我过去“喝茶详谈”😢结果我去了发现原来是人家喝茶我看着
点赞 评论 收藏
分享
评论
3
1
分享
牛客网
牛客企业服务