用循环链表表示一元多项式f(x)请给出该链表节点结构的定义,并编写一个函数value(x),计算多项式在x=x0处的值

问题描述:

用循环链表表示一元多项式f(x)请给出该链表节点结构的定义,并编写一个函数value(x),
计算多项式在x=x0处的值

#include #include "stdlib.h"#include // 结点的结构typedef struct node{int xishu;int zhishu;struct node *next;} ListNode;//新建链表ListNode* CreateList(){ListNode *head ,*node1 ,*node2;int xi,zhi;head ...