单链表各类基本运算的算法

【代码】//文件名:linklist.cppcode #include <stdio.h> #include <malloc.h> typedef int ElemType; typedef struct LNode { ElemType data; struct LNode *next; } LinkNode; void InitList(LinkNode *&L) //初始化线性表
相关文章
相关标签/搜索