代码搜索:poly
找到约 5,168 项符合「poly」的源代码
代码结果 5,168
www.eeworm.com/read/387809/8652725
h poly.h
#ifndef POLY_H
#define POLY_H
typedef void *poly;
#endif
www.eeworm.com/read/387809/8652755
h poly.h
#ifndef POLY_H
#define POLY_H
typedef void *poly;
#endif
www.eeworm.com/read/387200/8699951
h poly.h
#ifndef POLY_H
#define POLY_H
typedef void *poly;
#endif
www.eeworm.com/read/387009/8712214
h poly.h
struct Poly {
VecDoub &c;
Poly(VecDoub &cc) : c(cc) {}
Doub operator() (Doub x) {
Int j;
Doub p = c[j=c.size()-1];
while (j>0) p = p*x + c[--j];
return p;
}
};
void ddpoly(VecDou
www.eeworm.com/read/385221/8813489
h poly.h
/* Copyright (C) 1995, Tektronix Inc. All Rights Reserved.
*
* Usage Restrictions
*
* License is granted to copy, to use, and to make and to use derivative
* works for research and evaluation p
www.eeworm.com/read/385221/8813556
cpp poly.cpp
/* Copyright (C) 1995, Tektronix Inc. All Rights Reserved.
*
* Usage Restrictions
*
* License is granted to copy, to use, and to make and to use derivative
* works for research and evaluation p
www.eeworm.com/read/427960/8908881
cpp poly.cpp
/*
* C++ class to implement a polynomial type and to allow
* arithmetic on polynomials whose elements are from
* the finite field mod p
*
* WARNING: This class has been cobbled together for
www.eeworm.com/read/427960/8908902
h poly.h
/*
* C++ class to implement a polynomial type and to allow
* arithmetic on polynomials whose elements are from
* the finite field mod p
*
* WARNING: This class has been cobbled together for
www.eeworm.com/read/184795/9074930
cpp poly.cpp
#include
#include
using namespace std;
ifstream in("input.txt");
ofstream out("output.txt");
class note
{
public:
double a;
int b;
};
class fc
{
private:int n;
www.eeworm.com/read/184795/9074979