数据结构中单链表的输入与输出
#include<iostream.h>#include<malloc.h>typedef ElementType;typedef struct Lnode{ElementType data;stru
数据结构中单链表的输入与输出