单链表实现一元多项式相加

# include <stdio.h> # include <malloc.h> # include <stdlib.h> typedef struct  LNode {   int  coef;   int  exp;   struct  LNode *next; }node; node *Createlist()//创建一元多项式链表 {   node *head,*middle,*s;//新
相关文章
相关标签/搜索