数据结构 顺序串的创建及其函数 C语言版

#include <cstdio> #include <stdlib.h> #define MAXLEN 100 typedef struct { char ch[MAXLEN]; int len; } SString; int SteInsert (SString *s,int pos,SString t) //在串s中下标为pos的字符以前插入串t; { int i;
相关文章
相关标签/搜索