代码搜索:SString

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

代码结果 985
www.eeworm.com/read/262111/11605931

cpp main4-1.cpp

// main4-1.cpp 检验bo4-1.cpp的主程序 #include"c1.h" #include"c4-1.h" #include"bo4-1.cpp" void main() { int i,j; Status k; char s,c[MAXSTRLEN+1]; SString t,s1,s2; printf("请输入串s
www.eeworm.com/read/262111/11606508

c main4-1.c

/* main4-1.c 检验bo4-1.c的主程序 */ #include"c1.h" #include"c4-1.h" #include"bo4-1.c" void main() { int i,j; Status k; char s,c[MAXSTRLEN+1]; SString t,s1,s2; printf("请输入串s1:
www.eeworm.com/read/347458/11664202

c main4-1.c

/* main4-1.c 检验bo4-1.c的主程序 */ #include"c1.h" #include"c4-1.h" #include"bo4-1.c" void main() { int i,j; Status k; char s,c[MAXSTRLEN+1]; SString t,s1,s2; printf("请输入串s1:
www.eeworm.com/read/257980/11897828

c main4-1.c

/* main4-1.c 检验bo4-1.c的主程序 */ #include"c1.h" #include"c4-1.h" #include"bo4-1.c" void main() { int i,j; Status k; char s,c[MAXSTRLEN+1]; SString t,s1,s2; printf("请输入串s1:
www.eeworm.com/read/251182/12359519

cpp main4-1.cpp

// main4-1.cpp 检验bo4-1.cpp的主程序 #include"c1.h" #include"c4-1.h" #include"bo4-1.cpp" void main() { int i,j; Status k; char s,c[MAXSTRLEN+1]; SString t,s1,s2; printf("请输入串s
www.eeworm.com/read/130200/14203482

cpp bo5-5.cpp

// bo5-5.cpp 广义表的头尾链表存储(存储结构由c5-5.h定义)的基本操作(11个),包括算法5.5,5.6,5.7 #include"func5-1.cpp" // 算法5.8 void InitGList(GList &L) { // 创建空的广义表L L=NULL; } void CreateGList(GList &L,SString S) /
www.eeworm.com/read/127962/14324110

c main4-1.c

/* main4-1.c 检验bo4-1.c的主程序 */ #include"c1.h" #include"c4-1.h" #include"bo4-1.c" void main() { int i,j; Status k; char s,c[MAXSTRLEN+1]; SString t,s1,s2; printf("请输入串s1:
www.eeworm.com/read/127961/14324620

cpp main4-1.cpp

// main4-1.cpp 检验bo4-1.cpp的主程序 #include"c1.h" #include"c4-1.h" #include"bo4-1.cpp" void main() { int i,j; Status k; char s,c[MAXSTRLEN+1]; SString t,s1,s2; printf("请输入串s
www.eeworm.com/read/206115/15299791

c main4-1.c

/* main4-1.c 检验bo4-1.c的主程序 */ #include"c1.h" #include"c4-1.h" #include"bo4-1.c" void main() { int i,j; Status k; char s,c[MAXSTRLEN+1]; SString t,s1,s2; printf("请输入串s1:
www.eeworm.com/read/195829/5107087

txt 4_2.txt

int StrDelete(SString *s, int pos, int len) /*在串s中删除从下标pos起len个字符*/ { int i; if (pos(s->len-len))/*删除参数不合法*/ return(0); for (i=pos+len;ilen;i++) s->ch[i-len]=s->ch[i]; /*