求最大公共子串长度

Posted 天秤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求最大公共子串长度相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <string.h>

#define N 256
int fun(const char* s1, const char* s2)
{
    int a[N][N];
    int len1 = strlen(s1);    //字符串s1的长度 
    int len2 = strlen(s2);    //字符串s2的长度 
    int i,j;
    
    memset(a,0,sizeof(int)*N*N);    //初始化数组为0 
    
    int max = 0;
    for(i=1; i<=len1; i++){
        for(j=1; j<=len2; j++){
            if(s1[i-1]==s2[j-1]) {
                a[i][j] = a[i-1][j-1] + 1;  
                if(a[i][j] > max) {
                    max = a[i][j];
                } 
            }
        }
    }
    
    return max;
}

int main()
{
    printf("%d\n", fun("abcdkkk", "baabcdadabc"));    //4
    return 0;
}

 

以上是关于求最大公共子串长度的主要内容,如果未能解决你的问题,请参考以下文章

java求最大公共子串

求两个字符串的公共子串的最大长度

动态规划求两字符串连续最大公共子串长度

求两个字符串的最长公共子串,要求输入两个字符串,输出他们的最长公共子串,包括长度。

02填空题

请帮忙///如何计算两个 字符串的最长公共子串