#include <iostream>
using namespace std;
//第四题
typedef struct Lnode
{
int data;
struct Lnode *next;
} lnode, *linklist;
void creatlist_h(linklist &L, int n)
{
lnode *p;
L=new lnode;
L->next=NULL;
for(int i=0; i<n; i++)
已知两个链表A和B分别表示两个集合,其元素递增排列。请设计算法求出两个集合A和集合B的差集(近由在A中出现而不再B中出现的元素所构成的集合),并以同样的形式存储,同时返回该集合的元素个数。
最新推荐文章于 2024-09-28 00:08:14 发布