题解 | #查找两个字符串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));
                }
            }
        }
}
全部评论

相关推荐

2025-12-19 19:02
西安交通大学 Java
程序员牛肉:双九,而且还是西交这种比较好的985九没必要再投日常了。你投中小厂,人家会觉得你学历这么顶还面试肯定是海投的,过了你也不去。所以不约你了。 直接准备暑期实习就好,现在你可以面试。但是目的不再是去日常实习了,而是熟悉面试节奏。 后续把精力放到八股,算法和AI知识上。抽空把自己这两个项目换了,怎么选项目可以看看我主页写的文章。 你学历不错的,不要焦虑
那些拿到大厂offer的...
点赞 评论 收藏
分享
评论
3
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务