p=L1; q=L2; L=NULL;
while(p)// 直接除掉L1中包含在L2中的元素 {
flag=0; while(q) { }
if(flag==0) { }
test= (LNode*)malloc(sizeof(LNode)); test->data=p->data; test->next=L; L=test;
if(p->data==q->data) { }
q=q->next; flag=1; break;
}
p=p->next;
return L;
}
3、系统测试
主界面
交集运算
并集运算