摘要:
解题思路(单链表求交集、并集、差集的思想和顺序表求交集、并集、差集的思想基本相同) 1.先通过CreateListR 函数将集合 a 和 b 中的元素添加到顺序表 ha 和 hb 中 ,添加过程使用的是顺序表原有的Initlist 函数(初始化表) 和 ListInsert 函数 (向表中插入元素) 阅读全文
摘要:
#include #include #include using namespace std; /* 定义单链表数据 */ typedef char ElemType; typedef struct LNode { ElemType data; struct LNode *next; }LinkList; /* 单链表的初始化 */ void InitList(Link... 阅读全文