代码搜索:匹配方式
找到约 10,000 项符合「匹配方式」的源代码
代码结果 10,000
www.eeworm.com/read/460783/7240724
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
www.eeworm.com/read/457804/7317595
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
www.eeworm.com/read/197077/8031999
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
www.eeworm.com/read/197075/8032385
dsw 括号匹配检验.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/197075/8032388
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) Co
www.eeworm.com/read/197075/8032396
ncb 括号匹配检验.ncb
www.eeworm.com/read/197075/8032398
opt 括号匹配检验.opt
www.eeworm.com/read/197075/8032402
cpp 括号匹配检验.cpp
#include"SqStack.h"
#include
//括号匹配与否的检验,要求表达式中只有两种括号[]和()
int check(){
SqStack S; //存放括号
SElemType e;
InitStack(S);//栈的初始化;
char c; //存放输入的字符;
while((c=getchar())!='
www.eeworm.com/read/197075/8032407
plg 括号匹配检验.plg
Build Log
--------------------Configuration: 括号匹配检验 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\BILLGA
www.eeworm.com/read/478955/6708575
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