代码搜索:查表法

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

代码结果 10,000
www.eeworm.com/read/218527/14915946

doc 共轭梯度法.doc

www.eeworm.com/read/116944/14947988

cpp 弦截法.cpp

#include "math.h" #include "stdio.h" double Func(double x) { return (x*x*x-3*x-1); } void main() { double x0,x1,t,eps; x0=1.9;x1=2;eps=0.0001; for(int i=1;i
www.eeworm.com/read/116517/14967022

c 高斯消去法.c

#include #include main() {float a[10][10],b[10],m[10][10],x[10],sum; int i,j,k,n; printf("the top exp:"); scanf("%d",&n); printf("\n"); for(i=0;i
www.eeworm.com/read/213656/15127927

frm 嵌套系数法.frm

VERSION 5.00 Begin VB.Form Form1 Caption = "Form1" ClientHeight = 3090 ClientLeft = 5970 ClientTop = 4155 ClientWidth = 4680 LinkTopic
www.eeworm.com/read/213486/15134131

doc 弦截法.doc

www.eeworm.com/read/213486/15134132

cpp 弦截法.cpp

#include #include double f(double x) { return x*x*x-3*x-1; } void XieJie(double x1, double x2, double e) { cout
www.eeworm.com/read/210370/15200283

sql -补位法.sql

--自已做标识列的例子,不自动重排编号,而是自动补号: --创建得到最大id的函数 create function f_getid() returns char(3) as begin declare @id int if not exists(select 1 from tb where id='001') set @id=1 else begin select
www.eeworm.com/read/207349/15274595

asm 冒泡法排序.asm

ORG 0000H BUBBLE: MOV R0,#30H MOV R2, #02H DEC R2 CLR 22H.0 BULOOP: MOV 20H , @R0 MOV