代码搜索:查表法

找到约 10,000 项符合「查表法」的源代码

代码结果 10,000
www.eeworm.com/read/310200/13655702

cpp jinbiaosai.cpp

//锦标赛排序法JinBiaoSai.cpp #include #include #include #include #include class DataNode //胜者树结点的类定义 {public: int data;//数据值 int index;//树中的结点号
www.eeworm.com/read/302188/13840074

cpp ll1.cpp

/* LL(1)分析法 */ #include #include #include #include #include // { E->TG , T->FU , G->+TG|^ , U->*FU|^ , F->(E)|i } char A[20]; /* 分析栈 */ char B[20
www.eeworm.com/read/128026/5992987

c thrice.c

/* 用弦截法求解方程的根 */ # include # include float f(float x) { float y; y = ((x-8.0)*x+12.0)*x - 30.0; return y; } float xpoint(float x1, float x2) /* 定义函数xpoint,求出弦
www.eeworm.com/read/119338/6090862

java ex_3_3_15.java

/* *文件名 ex_3_3_15.java *说 明:do-while循环应用举例 * 牛顿迭代法求正数平方根 */ import java.io.*; class ex_3_3_15 { public static void main(String args[]) throws IOException { // 精确度要求 fina
www.eeworm.com/read/107846/6188156

c thrice.c

/* 用弦截法求解方程的根 */ # include # include float f(float x) { float y; y = ((x-8.0)*x+12.0)*x - 30.0; return y; } float xpoint(float x1, float x2) /* 定义函数xpoint,求出弦
www.eeworm.com/read/145285/6350496

c thrice.c

/* 用弦截法求解方程的根 */ # include # include float f(float x) { float y; y = ((x-8.0)*x+12.0)*x - 30.0; return y; } float xpoint(float x1, float x2) /* 定义函数xpoint,求出弦
www.eeworm.com/read/389070/6353172

m characterfunction.m

function characterfunction %程序C7_1 插值法 n=4; %%%%%%% 输入矩阵大小 A=[4,3,2,1;3,3,2,1;2,2,2,1;1,1,1,1]; %%%%%%% 输入矩阵 h=0.5; %%%%%%% 节点步长 for k=1:n+1 t(k)=(
www.eeworm.com/read/493908/6384500

txt 例4.9.txt

例4.9 用弦截法求方程f(x)=x3次方-5x2次方+16x-80=0的根。 #include #include #include using namespace std; double f(double); //函数声明 double xpoint(double, double);
www.eeworm.com/read/488519/6488801

txt matlabfir.txt

matlab编程 频率采样法设计滤波器 wp=0.2*pi; ws=0.35*pi; wc=wp; N=34; alpha=(N-1)/2; k=0:N-1; wk=(2*pi)/N*k; Hk=[ones(1,4),0.5925,0.1099,zeros(1,23),-0.1099,-0.59
www.eeworm.com/read/487368/6510735

c thrice.c

/* 用弦截法求解方程的根 */ # include # include float f(float x) { float y; y = ((x-8.0)*x+12.0)*x - 30.0; return y; } float xpoint(float x1, float x2) /* 定义函数xpoint,求出弦