數據結構 順序串的創建及其函數 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;
相關文章
相關標籤/搜索