代码搜索:查表法

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

代码结果 10,000
www.eeworm.com/read/210240/15202846

cpp 编译大作业.cpp

#include #include "编译大作业.h" #include "string.h" int main() { bool nxtlev[symnum]; printf("PL/0文法编译器\n输入PL/0源文件:\n"); scanf("%s",fname); fin=fopen(fname,"r"); //输入文件名 if(fin)
www.eeworm.com/read/208856/15234240

cpp algo0701.cpp

Status CreateGraph( MGraph &G ) { // 算法7.1 // 采用数组(邻接矩阵)表示法,构造图G。 scanf(&G.kind); // 自定义输入函数,读入一个随机值 switch (G.kind) { case DG: return CreateDG(G); // 构造有向图G case
www.eeworm.com/read/38039/1090188

mnu angles.mnu

ANGLES 角 # remove the # sign and enter foreign help string in this line Horiz 水平 Rotation about x axis. 绕x轴旋转 Vert 竖直 Rotation about y axis. 绕y轴旋转 Norm 法向 Rotation about z axis. 绕 z 轴旋转 Edge/Axis 边/轴
www.eeworm.com/read/490190/1207801

cs assemblyinfo.cs

using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // 有关程序集的常规信息通过下列属性集 // 控制。更改这些属性值可修改 // 与程序集关联的信息。 [assembly: AssemblyTitle("WinApp6_2方法
www.eeworm.com/read/481087/1299961

cpp chase.cpp

/*--解对三对角方程组的追赶法--*/ #include #include double *Assign(int n) { return (double*)malloc(sizeof(double)*(n+1)); } void main() { int i,n;/*--未知数的个数--*/ double *a,*b,*c,*x,*
www.eeworm.com/read/452570/1653868

java sample5_3.java

/* * 示例程序Sample5_3: NLEquations类的求非线性方程一个实根的埃特金迭代法 */ package javaalgorithm.sample; import javaalgorithm.algorithm.NLEquations; import javaalgorithm.algorithm.Real; public class Sample5_3
www.eeworm.com/read/452570/1653885

java sample5_10.java

/* * 示例程序Sample5_10: NLEquations类的求非线性方程组最小二乘解的广义逆法 */ package javaalgorithm.sample; import javaalgorithm.algorithm.NLEquations; public class Sample5_10 { public static void main(String[
www.eeworm.com/read/452570/1653897

java sample5_11.java

/* * 示例程序Sample5_11: NLEquations类的求非线性方程一个实根的蒙特卡洛法 */ package javaalgorithm.sample; import javaalgorithm.algorithm.Real; import javaalgorithm.algorithm.NLEquations; public class Sample5_11
www.eeworm.com/read/452570/1653904

java sample5_9.java

/* * 示例程序Sample5_9: NLEquations类的求非线性方程组一组实根的拟牛顿法 */ package javaalgorithm.sample; import javaalgorithm.algorithm.NLEquations; public class Sample5_9 { public static void main(String[] a
www.eeworm.com/read/242824/4534064

h tree.h

//声明树中的类以及结点结构,文件名为tree.h #ifndef TREE_H #define TREE_H template //树中结点采用孩子兄弟表示法 struct TNode { T data; TNode *firstchild, *rightsib; }; template class Tree {