代码搜索:匹配方式
找到约 10,000 项符合「匹配方式」的源代码
代码结果 10,000
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/704/2887
vi 匹配模式.vi
www.eeworm.com/read/134321/13995806
cpp 完全匹配.cpp
#include
#include
#include
#include
#define MAXVEX 100
struct vertex
{
int num;
char data[20];
vertex& operator =(vertex &a)
{
www.eeworm.com/read/271772/10980835
txt 括弧匹配检验.txt
假设表达式中允许包含两种括号:圆括号和方括号,其嵌套的顺序随意,如 ([]()) 或 [([][])] 等为正确的匹配,[(]) 或 ([]() 或 (())) 均为错误的匹配。
现在的问题是,要求检验一个给定表达式中的括弧是否正确匹配?
检验括号是否匹配的方法可用"期待的急迫程度"这个概念来描述。即后出现的"左括弧",它等待与其匹配的"右括弧"出现的"急迫"心情要比先出现的 ...
www.eeworm.com/read/270578/11032479
swf 朴素串匹配.swf
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