数据结构实验一:(2)(单链表)线性表的各种操作LinkList

                    代码: #include<iostream> #include<malloc.h> #include<cstdio> using namespace std; typedef struct LNode {     char data;     struct LNode*next; }LinkNode; void InitList(LinkNode *& L)
相关文章
相关标签/搜索