代码搜索:内核模式

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

代码结果 10,000
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/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
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