[Algorithm] The longest substring of two strings

Source: Internet
Author: User

Abractyeyt, the eldest son of dgdsaeactyey is actyey

const int maxSize = 100;char suffix[2][maxSize][maxSize];int max_sub(char* s1, int len1, char* s2, int len2){    for(int r = 0; r < 2; ++r){        char* s;        int len;        if(0 == r){            s = s1;            len = len1;        }        else{            s = s2;             len = len2;        }        for(int i = 0; i < len; ++i){            for(int j = i, k = 0; j <= len; ++j,++k){                suffix[r][i][k] = s[j];            }        }    }    int begin1, begin2, maxLen = 0;    for(int i = 0; i < len1; ++i){        for(int j = 0; j < len2; ++j){            int k = 0;            while(suffix[0][i][k] &&                     suffix[1][j][k] &&                     suffix[0][i][k] == suffix[1][j][k]){                ++k;            }            if(k > maxLen){                begin1 = i;                begin2 = j;                maxLen = k;            }        }    }    return maxLen;} 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.