1. 首页
  2. 存储
  3. EMC
  4. 张乃孝版的数据结构课本课件讲解代码LinkString.c.doc

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

上传者: 2020-12-12 10:42:47上传 DOC文件 25KB 热度 8次
/*LinkString.c*/ /*字符串的链接表示*/ /*注意这里没有给出全部的函数实现*/ #include #include struct StrNode; /* 链串的结点 */ typedef struct StrNode *PStrNode; /* 结点指针类型 */ struct StrNode { /* 链串的结点结构 */ char c;
下载地址
用户评论