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

分类:浏览655评论97热度3
题目描述:
用循环链表表示一元多项式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 ...
【其他答案】
相关题目
你来答(暂时关闭)