数据结构 用c语言写的 集合的并、交和差运算的程序
数据结构 用c语言写的 集合的并、交和差运算的程序
日期:2017-11-24 11:35:07 人气:3
以下程序由标准C实现,并经严格测试。程序通过单链表存储集合
#include
#include
typedef struct pointer{
char dat;
struct pointer *link;
} pointer;
void readdata(pointer *head){ //读集合
pointer *p;
char tmp;
printf("input data ('0' for end):&qu