代码搜索:安全模式
找到约 10,000 项符合「安全模式」的源代码
代码结果 10,000
www.eeworm.com/read/487892/6501654
pdf ejb设计模式.pdf
www.eeworm.com/read/485824/6547469
cpp 单例模式.cpp
/*
单例模式
*/
#include
using namespace std;
class CSingle
{
public:
static CSingle* NewL()
{
CSingle* p = new CSingle;
return p;
}
~CSingle()
{
}
private://构造函数成
www.eeworm.com/read/483409/6606208
ppt 建造模式.ppt
www.eeworm.com/read/483409/6606239
exe 建造模式.exe
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
www.eeworm.com/read/476095/6762802
pdf java设计模式.pdf
www.eeworm.com/read/410235/11297648
pdf delphi模式编程.pdf
www.eeworm.com/read/409779/11311619
pdf java 设计模式.pdf
www.eeworm.com/read/407126/11428793
e 单缓存模式.e
www.eeworm.com/read/403717/11512688
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