数据结构-多项式的加法

该代码实现了一个用链表结构表示非降序整数的多项式类,并提供了初始化、打印、追加元素和多项式相加的功能。在多项式相加过程中,代码遍历两个链表,合并相同指数的项并处理不同指数的项。测试用例展示了如何创建和添加多项式,以及显示最终结果。
摘要由CSDN通过智能技术生成

以下是抄写的代码

#include<stdio.h> 
#include<malloc.h>

/**
  * Linked list of integers. The key is data. The key is sorted in non-descending order.
  */
  typedef struct LinkNode{
  int coefficient;
  int exponent;
  struct LinkNode *next;
} *LinkList, *NodePtr;

/**
  * Initialize the list with a header.
  * @return The pointer to the header.
  */
LinkList initLinkList(){
	LinkList tempHeader = (LinkList)malloc(sizeof(struct LinkNode));
	tempHeader->coefficient = 0;
	tempHeader->exponent = 0;
	tempHeader->next = NULL;
	return tempHeader;
} // Of ininLinkList

/**
  * Print the list.
  * @param paraHeader The header of the list.
  */
void printList(LinkList paraHeader){
	NodePtr p = paraHeader->next;
	while(p != NULL){
		printf("%d * 10^%d + ", p->coefficient, p->exponent);
		p = p->next;
	}// Of while
	printf("\r\n");
}// Of printList

/**
  * Print one node for testing.
  * @param paraPtr Tje pointer to the node.
  * @param paraChar The name of thr node.
  */
void printNode(NodePtr paraPtr, char paraChar){
	if(paraPtr == NULL){
		printf("NULL\r\n");
	}else {
		printf("The element of %c is (%d * 10^%d)\r\n", paraChar, paraPtr->coefficient, paraPtr->exponent);
	}// Of while 
}// Of printNode

/**
  * Add an element to the tail.
  * @param paraCoefficient The coefficient of the new element.
  * @param paraExponent The exponet of the new element.
  */
void appendElement(LinkList paraHeader, int paraCoefficient, int paraExponent){
	NodePtr p,q;
	
	// Step 1. Construct a new node.
	q = (NodePtr)malloc(sizeof(struct LinkNode));
	q->coefficient = paraCoefficient;
	q->exponent = paraExponent;
	q->next = NULL;
	
	// Step 2. Search to the tail.
	p = paraHeader;
	while (p->next != NULL){
		p = p->next;
	}// Of while
	
	// Step 3. Now add/link.
	p->next = q;
}// Of appendElement

/**
  * Polynomial addition.
  * @param paraList1 The first list.
  * @param paraList2 The second list.
  */
void add(NodePtr paraList1, NodePtr paraList2){
	NodePtr p, q, r, s;
	
	// Step 1. Search to the position.
	p = paraList1->next;
	printNode(p, 'p');
	q = paraList2->next;
	printNode(q, 'q');
	r = paraList1; // Previous pointer for inserting.
	printNode(r, 'r');
	free(paraList2);// The second list is destroyed.
	
	while ((p != NULL) && (q != NULL)){
		if(p->exponent < q->exponent){
			//Link the currentnode of the first list.
			printf("case 1\r\n");
			r->next = p;
			r = p;
			printNode(r, 'r');
			p = p->next;
			printNode(p, 'p');
		}else if((p->exponent > q->exponent)){
			//Link the current node of the second list.
			printf("case 2\r\n");
			r->next = q;
			r = q;
			printNode(r, 'r');
			q = q->next;
			printNode(q, 'q');
		}else {
			printf("case 3\r\n");
			//Change the current node of the first list.
			p->coefficient = p->coefficient + q->coefficient;
			printf("The coefficient is: %d.\r\n",p->coefficient);
			if(p->coefficient == 0){
				printf("case 3.1\r\n");
				s = p;
				p = p->next;
				printNode(p, 'p');
				//free(s);
			}else{
				printf("case 3.2\r\n");
				r = p;
				printNode(r, 'r');
				p = p->next;
				printNode(p, 'p');
			}// Of if
			s = q;
			q =q->next;
			//printf("q is pointing to (%d, %d)\r\n", q->coefficient, q->exponent);
			free(s);
		}// Of if
		
		printf("p = %ld, q = %ld \r\n", p, q);
	}// Of while 
	printf("End of while.\r\n");
	
	if(p == NULL){
		r->next = q; 
	}else {
		r->next = p;
	}// Of if
	
	printf("Addition ends.\r\n");
}// Of add

/**
  * Unit test 1.
  */
void additionTest1(){
	// Step 1. Initialize the first polynomial.
	LinkList tempList1 = initLinkList();
	appendElement(tempList1, 7, 0);
	appendElement(tempList1, 3, 1);
	appendElement(tempList1, 9, 8);
	appendElement(tempList1, 5, 17);
	printList(tempList1);
	
	// Step 2. Initialize the second polynomial.
	LinkList tempList2 = initLinkList();
	appendElement(tempList2, 8, 1);
	appendElement(tempList2, 22, 7);
	appendElement(tempList2, -9, 8);
	printList(tempList2);
	
	// Step 3.Add them to the first.
	add(tempList1, tempList2);
	printf("The result is: ");
	printList(tempList1);
	printf("\r\n");
}// Of additionTest1

/**
 * Unit test 2.
 */
void additionTest2(){
	// Step 1. Initialize the first polynomial.
	LinkList tempList1 = initLinkList();
	appendElement(tempList1, 7, 0);
	appendElement(tempList1, 3, 1);
	appendElement(tempList1, 9, 8);
	appendElement(tempList1, 5, 17);
	printList(tempList1);

	// Step 2. Initialize the second polynomial.
	LinkList tempList2 = initLinkList();
	appendElement(tempList2, 8, 1);
	appendElement(tempList2, 22, 7);
	appendElement(tempList2, -9, 10);
	printList(tempList2);

	// Step 3. Add them to the first.
	add(tempList1, tempList2);
	printf("The result is: ");
	printList(tempList1);
	printf("\r\n");
}// Of additionTest2

/**
 * The entrance.
 */
int main(){
	additionTest1();
	additionTest2();
	printf("Finish.\r\n");
	return 0;
}// Of main

以下是运行的结果

7 * 10^0 + 3 * 10^1 + 9 * 10^8 + 5 * 10^17 +
8 * 10^1 + 22 * 10^7 + -9 * 10^8 +
The element of p is (7 * 10^0)
The element of q is (8 * 10^1)
The element of r is (0 * 10^0)
case 1
The element of r is (7 * 10^0)
The element of p is (3 * 10^1)
p = 11605088, q = 11605216
case 3
The coefficient is: 11.
case 3.2
The element of r is (11 * 10^1)
The element of p is (9 * 10^8)
p = 11605120, q = 11605248
case 2
The element of r is (22 * 10^7)
The element of q is (-9 * 10^8)
p = 11605120, q = 11605280
case 3
The coefficient is: 0.
case 3.1
The element of p is (5 * 10^17)
p = 11605152, q = 0
End of while.
Addition ends.
The result is: 7 * 10^0 + 11 * 10^1 + 22 * 10^7 + 5 * 10^17 +

7 * 10^0 + 3 * 10^1 + 9 * 10^8 + 5 * 10^17 +
8 * 10^1 + 22 * 10^7 + -9 * 10^10 +
The element of p is (7 * 10^0)
The element of q is (8 * 10^1)
The element of r is (0 * 10^0)
case 1
The element of r is (7 * 10^0)
The element of p is (3 * 10^1)
p = 11605280, q = 11605408
case 3
The coefficient is: 11.
case 3.2
The element of r is (11 * 10^1)
The element of p is (9 * 10^8)
p = 11605312, q = 11605440
case 2
The element of r is (22 * 10^7)
The element of q is (-9 * 10^10)
p = 11605312, q = 11605472
case 1
The element of r is (9 * 10^8)
The element of p is (5 * 10^17)
p = 11605344, q = 11605472
case 2
The element of r is (-9 * 10^10)
NULL
p = 11605344, q = 0
End of while.
Addition ends.
The result is: 7 * 10^0 + 11 * 10^1 + 22 * 10^7 + 9 * 10^8 + -9 * 10^10 + 5 * 10^17 +

Finish.

--------------------------------
Process exited after 0.1665 seconds with return value 0
请按任意键继续. . .

刚开始学习多项式的加法,有太多疑惑和不了解的地方了,正在慢慢学,下次有进展会来更新的。

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值