PTA数据结构与算法中文-一元多项式的乘法与加法运算

//Polynomial addition and multiplicatin
#include <stdio.h>
#include <stdlib.h>

typedef struct PolyNode *Polynomial;

struct PolyNode {
	int coef;
	int expon;
	struct PolyNode *next;
};

Polynomial Create();
void Print(Polynomial p);

Polynomial Muti2(Polynomial p1, Polynomial p2);
Polynomial Add2(Polynomial p1, Polynomial p2);
Polynomial Attach(int coef, int expon, Polynomial p, Polynomial head);

int main() {
	Polynomial p1, p2, p3, p4;
	p1 = Create();
	p2 = Create();
//	Print(p1);
//	Print(p2);
//	printf("Mutiplication:\n");
	p3 = Muti2(p1, p2);
	Print(p3);
	printf("\n");
//	printf("Addition:\n");
	p4 = Add2(p1, p2);
	Print(p4);

	return 0;
}

Polynomial Create() {
	Polynomial p, temp, head;
	head = (Polynomial)malloc(sizeof(struct PolyNode));
	head->next = NULL;
	p = head;

	int cnt;
	scanf("%d", &cnt);
	while (cnt) {
		temp = (Polynomial)malloc(sizeof(struct PolyNode));
		int coef, expon;
		scanf("%d", &coef);
		scanf("%d", &expon);
		temp->coef = coef;
		temp->expon = expon;
		temp->next = NULL;
		p->next = temp;
		p = temp;
		cnt--;
	}

	return head;
}

void Print(Polynomial p) {

	p = p->next;
	if (p==NULL)
		printf("0 0");
//	printf("Polynomial: ");
	for ( ; p; p = p->next) {
		printf("%d", p->coef);
		printf(" ");
		printf("%d", p->expon);
		if (p->next==NULL)
			break;
		printf(" ");
	}
}


//v2
Polynomial Muti2(Polynomial p1, Polynomial p2) {
	Polynomial p3, head, temp, headOfP1, headOfP2;
	headOfP1 = p1;
	headOfP2 = p2;
	int coef, expon;
	head = (Polynomial)malloc(sizeof(struct PolyNode));
	head->next = NULL;
	p3 = head;
	int flag = 0;

	for ( p1=p1->next; p1; p1=p1->next ) {
		p2 = headOfP2;
		for ( p2=p2->next; p2; p2=p2->next ) {
			coef = p1->coef * p2->coef;
			expon = p1->expon + p2->expon;
			p3 = Attach(coef, expon, p3, head);
//			printf("mul: ");
//			Print(head);  //debug
//			printf("\n");
		}

	}
	p1 = headOfP1;
	p2 = headOfP2;
	return head;
}

Polynomial Add2(Polynomial p1, Polynomial p2) {
	Polynomial p3, head, temp, headOfP1, headOfP2;
	headOfP1 = p1;
	headOfP2 = p2;
	int coef, expon;
	head = (Polynomial)malloc(sizeof(struct PolyNode));
	head->next = NULL;
	p3 = head;
	int flag = 0;

	for ( p1=p1->next; p1; p1=p1->next) {
		coef = p1->coef;
		expon = p1->expon;
		p3 = Attach(coef, expon, p3, head);
//		printf("add: ");
//		Print(head);  //debug
//		printf("\n");
	}

	for ( p2=p2->next; p2; p2=p2->next) {
		coef = p2->coef;
		expon = p2->expon;
		p3 = Attach(coef, expon, p3, head);
//		printf("add: ");
//		Print(head);  //debug
//		printf("\n");
	}


	p1 = headOfP1;
	p2 = headOfP2;
	return head;
}

Polynomial Attach(int coef, int expon, Polynomial p, Polynomial head) {
	Polynomial temp;

	if (coef==0)
		return p;
	if (p==head) {
		temp = (Polynomial)malloc(sizeof(struct PolyNode));
		temp->coef = coef;
		temp->expon = expon;
		temp->next = NULL;
		p->next = temp;
		p = temp;
		return p;
	}
	if (expon<p->expon) {
		temp = (Polynomial)malloc(sizeof(struct PolyNode));
		temp->coef = coef;
		temp->expon = expon;
		temp->next = NULL;
		p->next = temp;
		p = temp;
	} else if (expon==p->expon) {
		p->coef+=coef;
		if (p->coef==0) {
			if (head->next->next==NULL) { //only one in chain
				temp=p;
				head->next = NULL;
				free(temp);
				p=head;
			} else {
				Polynomial t;
				for (t=head->next; t, t->next!=p; t=t->next);
				temp = p;
				t->next = NULL;
				free(temp);
				p=t;
			}
		}
	} else {
//		printf("coef= %d, expon= %d\n", coef, expon);
		Polynomial t;
		for ( t=head; t->next->expon > expon; t=t->next );
		if ( t->next->expon < expon ) {
			temp = (Polynomial)malloc(sizeof(struct PolyNode));
			temp->coef = coef;
			temp->expon = expon;
			temp->next = t->next;
			t->next = temp;
		} else if ( t->next->expon == expon ) {
			t->next->coef+=coef;
			if ( t->next->coef==0 ) {
				temp = t->next;
				t->next = temp->next;
				free(temp);
			}
		}
	}
	return p;
}
	

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值