欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

蓝桥杯-求最大公共子串

程序员文章站 2022-03-09 15:09:55
...
题目:求两个字符串的最大公共子串,例如abcd和abcdefsh是abcd输出4
解题:有动态规划的思想,如果两个字母一样,给下一个格子加一

蓝桥杯-求最大公共子串

package august17;

public class 最大公共子串 {
    public static void main(String[] args) {
     String a1="yyabcdefghuu";

     String a2="xxabcdefgh";
     char []b1=a1.toCharArray();
     char []b2=a2.toCharArray();
        int [][]c=new int [b1.length+1][b2.length+1];



        int count=0;

        for(int i=0;i<b1.length;i++)
        {
            for(int j=0;j<b2.length;j++)
            {
                if(b1[i]==b2[j])
                {
                    c[i+1][j+1]=c[i][j]+1;
                    if( c[i+1][j+1]>count)
                        count=c[i+1][j+1];
                }
            }
        }
        System.out.println(count);
    }
}

b站链接 https://www.bilibili.com/video/BV1DE411E7Bj?p=100