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