合适菠萝

文章
7
资源
0
加入时间
2年10月21天

单链表的基本操作(c++实现)

(1)编程实现单链表的基本操作:建立单链表,查找单链表,插入单链表,删除单链表;(2)采用单链表结构编程实现:两个有序单链表的归并运算。/*(1)*/#include <iostream>typedef struct LNode{ int data; struct LNode *next;}LNode,*LinkList;bool InitList(...