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