/*单链表的各种操作*/ #include #include #define null 0 typedef int ElemType; /* 字符型数据*/ struct LNode { ElemType data; struct LNode *next; }; void setnull(struct LNode *p; int length (struc