代码搜索:查表法

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

代码结果 10,000
www.eeworm.com/read/298817/7933204

c 递堆法.c

www.eeworm.com/read/298817/7933300

c 各种排序法.c

#include #include struct node { int key; }r[20]; struct rnode { int key; int point; }; main() { void print(struct node a[20],int n); int creat(); void shell
www.eeworm.com/read/297768/7997270

cpp 模p法.cpp

void get_num(int p,char &s) { if(p>=0 && p=10 && p
www.eeworm.com/read/296852/8074917

cpp 共轭梯度法.cpp

#include #include int const n=2; double fun(double x[n],double f_xs[n+n+1+(n-1)*n/2]);//输入变量为函数自变量初值 void Q_fun(double f_xs[n+n+1+(n-1)*n/2],double Q[n][n+1]); void D_fun(doub
www.eeworm.com/read/296725/8080100

dsp 高斯消去法.dsp

# Microsoft Developer Studio Project File - Name="高斯消去法" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Con
www.eeworm.com/read/296725/8080108

dsw 高斯消去法.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # 警告: 不能编辑或删除该工作区文件! ############################################################################### Project: "高斯消去法"=".\高斯消去法.dsp
www.eeworm.com/read/296725/8080114

plg 高斯消去法.plg

Build Log --------------------Configuration: 高斯消去法 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\Users\qi\AppData
www.eeworm.com/read/195741/8133028

bak 冒泡法排序.bak

clear dime a(10) n=10 for i=1 to 10 a(i)=int(rand()*100) ??a(i) next for i=1 to n-1 for j=n to i+1 step -1 if a(j)>a(j-1) t=a(j) a(j)=a(j-1) a(j-1)=