代码搜索:poly
找到约 5,168 项符合「poly」的源代码
代码结果 5,168
www.eeworm.com/read/449504/7502389
poly sids.poly
NaN NaN
NaN NaN
NaN NaN
NaN NaN
NaN NaN
NaN NaN
NaN NaN
NaN NaN
NaN NaN
NaN NaN
-81.473 36.234
-81
www.eeworm.com/read/449240/7516573
h poly.h
//文件名Poly.h
#include
using namespace std;
//定义结点类型
struct node
{ int exp; //指数为整型
double coef; //系数为双精度型
node *next; //指针域
};
//多项式循环链表类
www.eeworm.com/read/448946/7521568
c poly.c
/**************************************************************************
Polynomial evaluation functions. Edit this file as follows:
1. Put your name and Andrew ID in the comment below
2.
www.eeworm.com/read/448946/7521570
h poly.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 fun
www.eeworm.com/read/444756/7607558
poly example.poly
#
# example.poly - Sample file of TetGen.
#
# A .poly file describes a piecewise linear complex (PLC)
# This file represents a compensated magic tee junction.
#
# The source file is from: Vali Catina
www.eeworm.com/read/193193/7805333
cpp poly.cpp
#include
#include
#include
#include
ifstream in("input.txt");
ofstream out("output.txt");
template
class poly;
template
class N
www.eeworm.com/read/193193/7805334
ppt poly.ppt
www.eeworm.com/read/193193/7805335
cpp poly.cpp
#include
#include
#include
#include
template
class poly;
template
class Node{
friend poly;
public:
T coef;
T exp;
Nod
www.eeworm.com/read/193193/7805336
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/193193/7805339