两个多项式加减(用数组进行降幂排序)
#include <stdio.h>#include <stdlib.h>#define NEW (node*)malloc(sizeof(node))typedef struct Node{float conf;int exp;struct Node*next;} node;node a[20],b[20],temp;nodecreatah()//创...
原创
2018-12-22 15:06:07 ·
745 阅读 ·
0 评论