代码搜索:SString
找到约 985 项符合「SString」的源代码
代码结果 985
www.eeworm.com/read/347458/11664241
c algo4-1.c
/* algo4-1.c 实现算法4.6、4.7的程序 */
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.c"
void get_next(SString T,int next[])
{ /* 求模式串T的next函数值并存入数组next 算法 4.7 */
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/347458/11664244
h c4-1.h
/* c4-1.h 串的定长顺序存储表示 */
#define MAXSTRLEN 40 /* 用户可在255以内定义最大串长(1个字节) */
typedef char SString[MAXSTRLEN+1]; /* 0号单元存放串的长度 */
www.eeworm.com/read/257980/11897851
c algo4-1.c
/* algo4-1.c 实现算法4.6、4.7的程序 */
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.c"
void get_next(SString T,int next[])
{ /* 求模式串T的next函数值并存入数组next 算法 4.7 */
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/257980/11897855
h c4-1.h
/* c4-1.h 串的定长顺序存储表示 */
#define MAXSTRLEN 40 /* 用户可在255以内定义最大串长(1个字节) */
typedef char SString[MAXSTRLEN+1]; /* 0号单元存放串的长度 */
www.eeworm.com/read/337673/12351109
cpp test2.cpp
//模式匹配的改进算法
#include
#include
typedef struct
{
char * ch;
int * next;//用于存放一个长度为length的数组,
//next[j-1]代表模式串中第j个位置与主串不匹配时,在模式中需重新和主串中该字符进行比较的字符的位置
int lengt
www.eeworm.com/read/251182/12359528
h c4-1.h
// c4-1.h 串的定长顺序存储表示
#define MAXSTRLEN 40 // 用户可在255以内定义最大串长(1个字节)
typedef char SString[MAXSTRLEN+1]; // 0号单元存放串的长度
www.eeworm.com/read/251182/12359541
cpp algo4-1.cpp
// algo4-1.cpp 实现算法4.6、4.7的程序
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.cpp"
void get_next(SString T,int next[])
{ // 求模式串T的next函数值并存入数组next 算法 4.7
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/130200/14203472
cpp algo4-1.cpp
// algo4-1.cpp 实现算法4.6、4.7、4.8的程序
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.cpp"
void get_next(SString T,int next[])
{ // 求模式串T的next函数值并存入数组next。算法4.7
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/127962/14324134
c algo4-1.c
/* algo4-1.c 实现算法4.6、4.7的程序 */
#include"c1.h"
#include"c4-1.h"
#include"bo4-1.c"
void get_next(SString T,int next[])
{ /* 求模式串T的next函数值并存入数组next 算法 4.7 */
int i=1,j=0;
next[1]=0;
www.eeworm.com/read/127962/14324137
h c4-1.h
/* c4-1.h 串的定长顺序存储表示 */
#define MAXSTRLEN 40 /* 用户可在255以内定义最大串长(1个字节) */
typedef char SString[MAXSTRLEN+1]; /* 0号单元存放串的长度 */