有两个链表a和b,设结点中包含学号、姓名。从a链表中删除b链表中有相同学号的结点。(可直接运行)

struct Student{
	int num;
	char name[20];
	struct Student *next;
};
int main(){
	struct Student *create();
	struct Student *delet(struct Student *ahead,struct Student *bhead);
	void print(struct Student *ahead);
	struct Student *ahead,*bhead;
	ahead=create();
	bhead=create();
	ahead=delet(ahead,bhead);
	print(ahead);
	return 0;
}
struct Student *create(){
	struct Student *p,*q,*head;
	int n=0;
	p=(struct Student*)malloc(sizeof(struct Student));
	scanf("%d%s",&p->num,p->name);
	while(p->num!=0){
		n++;
		if(n==1){
			head=p;
		}else{
			q->next=p;
		}
		q=p;
	p=(struct Student*)malloc(sizeof(struct Student));
	scanf("%d%s",&p->num,p->name);
	
	}
		q->next=NULL;	
		return head;
}
struct Student *delet(struct Student *ahead,struct Student *bhead){
	struct Student *p1,*q1,*p2;
	p1=ahead;
	p2=bhead;
	while(p1!=NULL){
		while(p2!=NULL){
			if(p2->num==p1->num){
				if(p1==ahead){
					ahead=p1->next;
					p1=ahead;
					break;
				}else{
					q1->next=p1->next;
					p1=ahead;
					break;
				}
			}
				p2=p2->next;
		}
		q1=p1;
		p1=q1->next;
		p2=bhead;
	}
		return ahead;
}
void print(struct Student *ahead){
	struct Student *p=ahead;
	do{
		printf("%d%s\n",p->num,p->name);
		p=p->next;
	}while(p!=NULL);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值