张乃孝版的数据结构课本课件讲解代码LinkString.c.doc

choosy_20498 7 0 DOC 2020-12-12 10:12:47

/*LinkString.c*/ /*字符串的链接表示*/ /*注意这里没有给出全部的函数实现*/ #include #include struct StrNode; /* 链串的结点 */ typedef struct StrNode *PStrNode; /* 结点指针类型 */ struct StrNode { /* 链串的结点结构 */ char c;

用户评论
请输入评论内容
评分:
暂无评论