字串匹配

2021-08-23 15:19:11 字數 951 閱讀 6572

/****************************************

字串匹配問題:字元「*」可代表任意多個的任意字元。

輸入:乙個不帶「*」的字串和乙個通配字串

輸出:如果匹配,則輸出「matched」;否則,輸出「not matched」

舉例:

例1: 例2: 例3: 例4: 例5:

abcdef abcdef abcdef abcdef abcdef

abc*f a** *f *d*f *d

matched matched matched matched not matched !

*****************************************/

#include "match.h"

void stringmatch(char* srcstring, char* matchstring)

if(*(matchtemp+1) != 0 && *srcstring == *(matchtemp+1))

}++srcstring;

if(*srcstring == 0 && *(matchtemp+1) != 0)

++ncnt;

}else

++ncnt;

}++srcstring;}}

if(ncnt == nsrclen)

else

}

字串匹配

題目描述 讀入資料string 然後讀入乙個短字串。要求查詢string 中和短字串的所有匹配,輸出行號 匹配字串。匹配時不區分大小寫,並且可以有乙個用中括號表示的模式匹配。如 aa 123 bb 就是說aa1bb aa2bb aa3bb都算匹配。輸入 輸入有多組資料。每組資料第一行輸入n 1 n ...

字串匹配

time limit 1000ms memory limit 65536k 給定兩個字串string1和string2,判斷string2是否為string1的子串。輸入包含多組資料,每組測試資料報含兩行,第一行代表string1,第二行代表string2,string1和string2中保證不出現...

字串匹配

面試題 給一串很長的字串,要求找到符合要求的字串,例如目的串 123 1 3 2 12 3 這些都要找出來 思路一 利用兩層迴圈,逐個查詢目的串中的字元,比如先查詢字元 1 是否在長字串中,再查詢 2 是否在長字串中,直到目的串遇到 0 是 include include include int m...