數據結構實驗一:(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)
相關文章
相關標籤/搜索