摘要:
解题思路: 定义三个数组double a[1001],b[1001],c[2001]分别用来表示多项式A,多项式B,和它们的成绩,其中下标表示指数,元素值代表系数 注意点:数组c的长度要大于2001,a,b,c都要初始化为零 阅读全文
posted @ 2019-03-05 18:51
Chance-Zou
阅读(472)
评论(0)
推荐(0)
摘要:
include using namespace std; typedef struct { int level;//节点所在层次 int flag;//0没有孩子,1有孩子 int father;//父节点 }Node; int main() { Node node[205]; int n, m;/ 阅读全文
posted @ 2019-03-05 15:08
Chance-Zou
阅读(454)
评论(0)
推荐(0)