数据结构课程设计----编制一个能演示执行集合的并交和差运算的程序。( 用有序链表表示集合)

日期:2017-12-15 09:49:52 人气:2

数据结构课程设计----编制一个能演示执行集合的并交和差运算的程序。( 用有序链表表示集合)

#include #include typedef struct pointer { char data; struct pointer *link; } pointer; void readdata(pointer *head){ //读集合 pointer *p; char tmp; printf("input data ('0' for end):"); scanf("%c",
    A+
热门评论