数据结构c语言 单链表源代码.doc
/*单链表的各种操作*/ #include > #include > #define null 0 typedef int ElemType; /* 字符型数据*/ struct LNode { ElemType data; struct LNode *next; }; void setnull(struct LNode *p; int length (struct LNode *p; Elem
下载地址
用户评论