数据结构 链表 多项式相加 C语言

时间:2013-10-22 17:26:52
【文件属性】:

文件名称:数据结构 链表 多项式相加 C语言

文件大小:4KB

文件格式:C

更新时间:2013-10-22 17:26:52

数据结构 链表 多项式相加 C语言

数据结构 链表 多项式相加 C语言 struct node { int coef; int expo; struct node *next; }; void input(struct node **head) void display(struct node *head) void add(struct node **head1,struct node *head2)


网友评论