字符串模式匹配

#include
#include
//Naive版本,>>数据结构P79
int StringMatch(char* s,char* t){
	int i=0,j=0;
	int len_s=strlen(s);
	int len_t=strlen(t);
	while(i

你可能感兴趣的:(编程练习)