代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/119900/14817302
html 3726.html
最残忍的减肥法(图)
http://www.sina.com.cn
2003年07月22日10:14 生活时报
www.eeworm.com/read/119769/14822827
txt 列主元.txt
http://www.dastu.com/2004/8-27/221853.html
http://www.cncso.org/ReadNews.asp?NewsID=560
http://www.programsalon.com/search_db.asp?keyword=牛顿&pos=20
/* 高斯列主元消去法解线代数方程组 */
#include "math.h"
#
www.eeworm.com/read/118756/14857543
txt 列选主元.txt
/* 高斯列主元消去法解线代数方程组 */
#include "math.h"
#include "stdio.h"
#include "stdlib.h"
void max_ele(double af[][21],int n,int k) /* 选主元 */
{double max1,t;
int i,j;
max1=af[k][k];
www.eeworm.com/read/118611/14861867
txt 新建 文本文档.txt
当初为了买房子签合同,自己写了个小程序,主要是为了比较等额法和递减法之间的差价,比较简单,相信战友们都能看懂,于是是upload上来了,有兴趣的看看。有问题可以联系,QQ:158679138。用了xpmenu控件。
www.eeworm.com/read/216116/15026792
cpp erfenfa2.cpp
//二分查找法(非递归调用)erfenfa2.cpp
#include
#include
#include
void binsrch(int a[],int n,int x)
{int mid,top=0,bot=n-1,find=0,m=0;
do {
m=m+1;
mid=(top+bot)/2;
www.eeworm.com/read/114599/15046463
m rkone.m
function y=RKone(h,A,B,C,U,N,n) %应用一阶龙格库塔算法(即欧拉法)计算
X=zeros(N,1);
y(1)=input('请给出y的初值y(0)的值:')
for i=1:n
y(i+1)=y(i)+h*(A*X+B*U)
end
www.eeworm.com/read/215702/15052458
h 9_14.h
//9_14.h
#ifndef SEARCH_METHODS
#define SEARCH_METHODS
//用顺序查找法在数组list中查找值为key的元素
//若找到,返回该元素下标,否则返回-1
template
int SeqSearch(T list[], int n, T key)
{
for(int i=0;i < n;i++)
www.eeworm.com/read/214783/15088759
cpp lagrangenewton.cpp
#include
#include
#include
typedef struct data
{
float x;
float y;
}Data;//变量x和函数值y的结构
Data d[20];//最多二十组数据
float f(int s,int t)//牛顿插值法,用以返回插商
{
if(t==s+1)
www.eeworm.com/read/114100/15110102
txt 如何播放背景音乐(midi).txt
你 使 用 的 是 VB 6.0, 可 你 调 用 的 API函 数 却 都 是 16位 的 , 当 然 不 会 成 功 。 正 确 的 方 法 如 下 :
实 现 加 入 如 下 声 明 :
Private Declare Function mciSendString Lib "winmm.dll" Alias _
"mciSendStringA" (ByV
www.eeworm.com/read/114100/15110654
txt 怎样修改控件的recordsource属性.txt
RecordSource属 性 可 以 在 设 计 时 修 改 , 也 可 以 在 运 行 时 修 改 。 如 果 在 运 行 时 修 改 , 必 须 在 修 改 后 调 用 Refresh方 法 , 如 :
datPrimaryRS.RecordSource = "Select * From Sales Where Price>50"
datPrimaryRS.Refre