双向链表实现集合的并交差
实验二:双向链表的创建,以及用双向链表实现集合见得并交和差#include<stdio.h>#include<stdlib.h>typedef struct DuLNode{ int data;