代码搜索:查表法

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

代码结果 10,000
www.eeworm.com/read/237997/13913547

c polynominal.c

/* file name : polynominal.c Description :多项式相加实例 利用数组表示法做多项式相加
www.eeworm.com/read/128512/14292428

txt 说明.txt

这是一个提供给使用遥控器的嵌入式设备开发的一个中文拼音输入法,是用键盘模拟遥控器, F9,F11,F12为换行,数字和+号键来操作,在视图菜单中点打开输入法,
www.eeworm.com/read/390524/8460895

txt 预测分析法.txt

#include #include #include #include struct code_val { char code;char val[20]; }; const char *p[ ]= //指向产生式右部符号串 {"TD","+TD","","FS","*FS"
www.eeworm.com/read/189078/8490798

txt 背包贪婪法程序.txt

背包问题之贪婪算法求解C语言源代码[原创] 关于背包问题描述请看http://bugeyes.blog.edu.cn/user1/20989/archives/2005/351526.shtml 。 其实原来的程序也是采用了贪婪算法,不过下面程序中的beibao1函数采用了贪婪算法的另一种写法,beibao函数是以前的代码,用来比较两种算法: #define K 10 #defi
www.eeworm.com/read/433160/8542275

txt 完美腹肌锻炼法.txt

完美腹肌锻炼法 摘自:《健与美》   这些动作主要锻炼上、下腹。   躺在斜板凳上,小腿离开板凳面。双手后屈,抓紧板凳两旁。提膝,幅度越高越好。同时拉起臀部和大腿,使之离开凳面。当身体蜷起时,稍停并紧紧压榨腹肌。然后慢慢放下双腿。过程中双脚不要触及地面。   躺在地面,双手握拳并放在头侧的太阳穴旁。屈起双膝,脚掌仍然平放在地面。按自己的肌肉柔软度让双膝尽量向两边地板拉开至呈 ...
www.eeworm.com/read/289058/8581929

cpp 牛顿迭代法.cpp

#include #include #define N 100 #define EPS 1e-6 #define ETA 1e-8 void main() { float f(float); float f1(float); float x0,y0; float Newton(float (*)(float),float (*
www.eeworm.com/read/289058/8581932

cpp 改进欧拉法.cpp

#include #define N 20 void ModEuler(float (*f1)(float,float),float x0,float y0,float xn,int n) { int i; float yp,yc,x=x0,y=y0,h=(xn-x0)/n; cout
www.eeworm.com/read/388234/8625952

dsw 插入法排序.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/388234/8625957

cpp 插入法排序.cpp

#include void insert_sort(int *a,int n) { if(n==1) return ; insert_sort(a,n-1); int temp=a[n-1]; for(int i=n-2;i>=0;i--) { if(temp