张乃孝版的数据结构课本课件讲解代码SeqString.c.doc
/*SeqString.c*/ /*字符串的顺序表示*/ /*注意这里没有给出全部函数的实现*/ #include #include struct SeqString { /* 顺序串的类型 */ int MAXNUM; /* 串允许的最大字符个数 */ int n; /* 串的长度n?MAXNUM */ char *c; }; typedef struct
下载地址
用户评论