题解 | #查找两个字符串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-04 14:10
东南大学 Java
_可乐多加冰_:去市公司包卖卡的
点赞 评论 收藏
分享
11-28 17:58
门头沟学院 Java
美团 JAVA开发 n×15.5
牛客786276759号:百度现在晋升很难的 而且云这块的业务没美团好 你看百度股价都跌成啥样了
点赞 评论 收藏
分享
评论
3
1
分享
牛客网
牛客企业服务