⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 poly.h

📁 Linux 下的ICS Lab5,是关于代码优化方面的
💻 H
字号:
/*  Integer polynomial evaluation.  Polynomial given by array of coefficients a[0] ... a[degree].  Want to compute SUM(i=0,degree) a[i] * x^i*//* Type declaration for a polynomial evaluation function */  typedef int (*peval_fun)(int*, int, int);typedef struct {  peval_fun f;  char *descr;} peval_fun_rec, *peval_fun_ptr;/* Table of polynomial functions to test.  Null terminated */extern peval_fun_rec peval_fun_tab[];

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -