代码搜索:外差式

找到约 10,000 项符合「外差式」的源代码

代码结果 10,000
www.eeworm.com/read/298425/7962079

txt 多项式.c.txt

#include #include #include typedef struct node {float coef; int exp; struct node *next; }linknode,*link; void Insert(link head,link s) {link pre=NULL,p=NULL
www.eeworm.com/read/333760/12661505

cpp 多项式加乘.cpp

#include #include using namespace std; typedef struct LNode { float coef; int expn; struct LNode *next; }LNode,*LinkList; int CreatList(LinkList); int
www.eeworm.com/read/140664/13069568

ewb 桥式整流电路.ewb

Electronics Workbench Circuit File Version: 5 Charset: ANSI Description: "Full-wave Rectifier. The second circuit shows transformer with no ground on the primary side." EncryptionType: 1 Usi
www.eeworm.com/read/327510/13073709

cpp 牛顿值多项式.cpp

#include #define N 4 void Difference(float *x,float *y,int n) { float *f; int k,i; f =new float[(n*sizeof(float))]; for(k=1;k