代码搜索:SString

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

代码结果 985
www.eeworm.com/read/423304/10571808

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

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

h c4-1.h

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

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/466955/7024893

h c4-1.h

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

txt 广义表.txt

#include"stdio.h" #include"stdlib.h" #include"string.h" typedef char AtomType; typedef enum{ATOM,LIST}ElemTag; typedef struct GLNode { ElemTag tag; union { AtomType atom; struct {
www.eeworm.com/read/461110/7233521

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/456942/7336398

h c4-1.h

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

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/454932/7381650

h c4-1.h

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