代码搜索:SString

找到约 985 项符合「SString」的源代码

代码结果 985
www.eeworm.com/read/366495/9811688

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/362558/9992437

txt 4_9.txt

int SubString(SString *sub, SString s, int pos, int len) /*将串s中下标pos起len个字符复制到sub中*/ { int i; if (poss.len || lens.len-pos) { sub->len=0; return(0); } else
www.eeworm.com/read/166053/10039183

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/166053/10039184

h c4-1.h

/* c4-1.h 串的定长顺序存储表示 */ #define MAXSTRLEN 40 /* 用户可在255以内定义最大串长(1个字节) */ typedef char SString[MAXSTRLEN+1]; /* 0号单元存放串的长度 */
www.eeworm.com/read/425971/10299786

h c4-1.h

// c4-1.h 串的定长顺序存储表示 #define MAXSTRLEN 40 // 用户可在255以内定义最大串长(1个字节) typedef char SString[MAXSTRLEN+1]; // 0号单元存放串的长度
www.eeworm.com/read/425971/10299794

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/425971/10300425

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/425971/10300429

h c4-1.h

/* c4-1.h 串的定长顺序存储表示 */ #define MAXSTRLEN 40 /* 用户可在255以内定义最大串长(1个字节) */ typedef char SString[MAXSTRLEN+1]; /* 0号单元存放串的长度 */
www.eeworm.com/read/352747/10518097

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/423304/10571792

h c4-1.h

// c4-1.h 串的定长顺序存储表示 #define MAXSTRLEN 40 // 用户可在255以内定义最大串长(1个字节) typedef char SString[MAXSTRLEN+1]; // 0号单元存放串的长度