Simple Matching Algorithm Test

Source: Internet
Author: User

Simple Matching Algorithm test code:

Win7_Ultimate_32_sp1 + vs2010:

 

 

// MatchTest. cpp: defines the entry point of the console application. // # Include "stdafx. h" int matchFuction (const char * DesChar, const char * handle char) {int I = 0, j = 0; while ('\ 0 '! = DesChar [I] & '\ 0 '! = Char [j]) // note this \. Instead of/it looks like oh {if (DesChar [I] = char [j]) {I ++; j ++;} else {I ++; j = 0 ;}} if ('\ 0' = char [j]) {return I-j; // return the subscript of the matched start position in the target string, position subscript starts from 0} else {return-1;} int _ tmain (int argc, _ TCHAR * argv []) {const char * deschar = "abcdaacba "; const char * mongochat = "cd"; int retValue = matchFuction (deschar, mongochat); return 0 ;}

 

Related Article

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.