代码搜索:安全模式
找到约 10,000 项符合「安全模式」的源代码
代码结果 10,000
www.eeworm.com/read/375389/9362058
doc 实战mvc模式.doc
www.eeworm.com/read/371979/9528178
bmp 完整模式显示.bmp
www.eeworm.com/read/361969/10025112
rar dao设计模式.rar
www.eeworm.com/read/358092/10196188
chm java设计模式.chm
www.eeworm.com/read/426118/10285651
chm 设计模式手册.chm
www.eeworm.com/read/350779/10710387
txt 模式识别.txt
3
1 1 1 -1 1 -1 -1 -1 1 -1 -1 -1 1 1 1 -1 1 0 0
1 -1 -1 1 1 1 -1 1 1 -1 1 1 1 -1 -1 1 0 1 0
1 1 1 1 -1 -1 1 -1 -1 1 -1 -1 1 1 1 1 0 0 1
www.eeworm.com/read/349945/10780422
pdf 模式识别.pdf
www.eeworm.com/read/420431/10795956
pdf 大话设计模式.pdf
www.eeworm.com/read/417278/10997750
ppt 并发故障模式.ppt
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