代码搜索:Horspool

找到约 41 项符合「Horspool」的源代码

代码结果 41
www.eeworm.com/read/118493/6098874

zip horspool.zip

404 Not Found 404 Not Found Sorry, this document is not available. Back to IGM :
www.eeworm.com/read/127249/14365555

html horspool.html

Horspool
www.eeworm.com/read/475169/6793763

cpp horspool.cpp

//Horspool算法实现模式匹配 #include #include char P[]={"BARBER"};//模式串存放在数组P中 char T[]={"JIM_SAW_ME_IN_A_BARBERSHOP"};//文本串存放在数组T中 int Table[256];//存放填充移动表 int m,n; //m为模式串长度,n为
www.eeworm.com/read/475169/6793764

exe horspool.exe

www.eeworm.com/read/346769/11723913

h algo4.h

#include #include #include #include #include"windows.h" #include void kmpnext(char *par,int pmun,int *next); void kmp(char* test,char *par,int tm
www.eeworm.com/read/475169/6793758

txt 文档说明.txt

此文件夹中共包括十二个小程序。每个小程序分别放在一个独立的子文件夹中,子文件夹中分别含有源程序和可执行文件。所有的小程序均在VC6.0环境下用C语言编写。 小程序分别有: AVL:创建平衡二叉树,通过加入一个个的结点创建,并实现了平衡二叉树中的结点删除。 Boyer_Moore:实现了Boyer_Moore算法的串模式匹配。 <mark>Horspool</mark>:实现了<mark>Horspool</mark>算法的串模式 ...
www.eeworm.com/read/127249/14364304

html boyermoorhor.html

Boyer-Moore-Horspool
www.eeworm.com/read/199943/5074543

c bogogrep.c

/* * This file emulates GNU grep -ab with a plain text pattern anchored to * the left. The Horspool search was taken from a publicly available * version on the Internet. * * The rest of the progr
www.eeworm.com/read/159920/10589764

c bmhasrch.c

/* ** Boyer-Moore-Horspool pattern match ** Case-insensitive with accented character translation ** ** public domain by Raymond Gardner 7/92 ** ** limitation: pattern length + subject length
www.eeworm.com/read/258434/11864752

c bmhasrch.c

/* ** Boyer-Moore-Horspool pattern match ** Case-insensitive with accented character translation ** ** public domain by Raymond Gardner 7/92 ** ** limitation: pattern length + subject length