顺序串的表示和实现(C语言)

/* * sqstring.c * * Created on: 2018年11月27日 * Author: Jinjin */ #include<stdio.h> #include<malloc.h> #define INITSTRLEN 100 typedef struct { char *ch; int length; int strsize; }string; /
相关文章
相关标签/搜索