Maximum Common string

Source: Internet
Author: User

Code:

1 //find the largest common substring in two strings2 //The largest common substrings such as "Nbitheimanb" and "Itheia" are: "Ithei"3 4 #import<Foundation/Foundation.h>5 6 intMainintargcConst Char*argv[]) {7 @autoreleasepool {8nsstring* str1 =@"NBITHEIMANB";9nsstring* str2 =@"Ithei";Ten          OneNsrange Maxsubstringrange = Nsmakerange (0,0); A          for(Nsuinteger location =0; Location < [str2 length]; ++Location ) { -              for(Nsuinteger length = [str2 length]-location; length >0; --length) { -Nsrange Substringrange = {. location = location,. length =length}; thensstring* subString =[str2 Substringwithrange:substringrange]; -                 if([str1 rangeofstring:substring].location! =nsnotfound) { -                     if(Substringrange.length >=maxsubstringrange.length) { -Maxsubstringrange =Substringrange; +                     } -                 } +             } A         } at  -nsstring* greatestcommonstring =[str2 Substringwithrange:maxsubstringrange]; -NSLog (@"Greatest Common String =%@", greatestcommonstring); -     } -     return 0; -}

Output:

1 Greatest Common String = Ithei

Maximum Common string

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.