代码搜索:模式匹配

找到约 10,000 项符合「模式匹配」的源代码

代码结果 10,000
www.eeworm.com/read/161613/10392020

c 模式匹配.c

# include # include # define MAX 100 int next[100];/*定义全局变量数组next[]*/ typedef struct { char *ch; int length; }string; void creat(string *s) /*创建一个串*/ { c
www.eeworm.com/read/145448/12723761

txt 模式匹配.txt

/* 模式匹配问题的无回溯算法*/ #include #define MAXNUM 100 /* 串允许的最大字符个数 */ struct SeqString /* 顺序串的类型 */ { char c[MAXNUM]; int n; /* 串的长度,n
www.eeworm.com/read/305932/13756095

ppt 模式匹配.ppt

www.eeworm.com/read/340936/12121277

ncb 匹配模式.ncb

www.eeworm.com/read/340936/12121279

dsw 匹配模式.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # 警告: 不能编辑或删除该工作区文件! ############################################################################### Project: "匹配模式"=".\匹配模式.DSP"
www.eeworm.com/read/340936/12121281

plg 匹配模式.plg

Build Log --------------------Configuration: 匹配模式 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\ADMINI~1
www.eeworm.com/read/340936/12121282

opt 匹配模式.opt

www.eeworm.com/read/340936/12121285

dsp 匹配模式.dsp

# Microsoft Developer Studio Project File - Name="匹配模式" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/469138/6978157

txt 模式匹配(kmp).txt

//模式匹配,kmp算法,复杂度O(m+n) //返回匹配位置,-1表示匹配失败,传入匹配串和模式串和长度 //可更改元素类型,更换匹配函数 #define MAXN 10000 #define _match(a,b) ((a)==(b)) typedef char elem_t; int pat_match(int ls,elem_t* str,int lp,elem_t* pa