c语言链表集合求并集用字母表示,两个集合求并集(用链表的方式)
#include#includestruct LNode{int data;struct LNode *next;};typedef struct LNode LinkList;//表的头指针类型//定义的结构体别名为指针类型LinkList *CreateListF(int a[], int n); //把结构体指针定义到创建函数中int ListLength(LinkList L)...