数据结构学习之路5 队列的应用——多项式相加

这篇博客探讨了如何使用链表形式的队列数据结构来实现两个多项式的相加。程序不依赖键盘输入,而是直接在代码中定义多项式,通过遍历和线性表操作完成求和过程。
摘要由CSDN通过智能技术生成

此次代码不支持键盘输入两个待加的多项式,需要在程序内部设定两个多项式,然后计算他们的和,用到的数据结构是链表形式的队列

代码如下

#include<iostream>
using namespace std;
typedef struct Qnode *Queue;
struct Qnode{
	int xishu;
	int zhishu;
	Queue next;
};
int Compare(int a, int b){
	if(a > b)
		return 1;
	else if(b > a)
		return -1;
	else return 0;
}
void Attach(int a, int b, Queue *p){
	Queue s;
	s = (Queue)malloc(sizeof(Qnode));
	s ->xishu = a;
	s ->zhishu = b;
	s ->next = NULL;
	(*p) ->next = s;
	*p = s;
}
Queue creat(){
	Queue p;
	p = (Queue)malloc(sizeof(Qnode));
	p ->next = NULL;
	return p;
}
Queue addQ(Queue p1, Queue p2){
	Queue front, rear, temp;
	front = rear = (Queue)malloc(sizeof(Qnode));
	while(p1 && p2){
		switch(Compare(p1 ->zhishu, p2 ->zhishu)){
			case 1:
				Attach(p1 ->xishu, p1 ->zhishu, &rear);
				p1 = p1 ->next;
				break;
			case -1:
				Attach(p2 ->xishu, p2 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值