(链表实现)写出两个一元多项式相加的算法
摘要:
/*实验23. 试写出两个一元多项式相加的算法。用链表来存储一元多项式,并且要在程序中验证其功能实现。此题的源程序保存为2_e1.cpp*/#include<iostream>using namespace std;struct node{ int co; //系数 int exp; //指数 struct node * next;};node* Creat() {//尾插法建表,有头结点 node* head; node* s, *p; int c, e; head=new node; //生成头结点 head->next=NULL; cout<<"请 阅读全文
posted @ 2011-10-22 10:06 1.曲待续 阅读(9518) 评论(0) 推荐(0) 编辑