代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/133757/14025441
c thrice.c
/* 用弦截法求解方程的根 */
# include
# include
float f(float x)
{
float y;
y = ((x-8.0)*x+12.0)*x - 30.0;
return y;
}
float xpoint(float x1, float x2) /* 定义函数xpoint,求出弦
www.eeworm.com/read/132554/14084096
txt fe.txt
fe
函数名: ecvt
功 能: 把一个浮点数转换为字符串
用 法: char ecvt(double value, int ndigit, int *decpt, int *sign);
程序例:
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int
www.eeworm.com/read/204479/15337774
c dic_seqlist_binsearch.c
/* 本程序提供了用顺序表实现字典的情况下
的二分法检索算法*/
#include
#define TRUE 1
#define FALSE 0
#define MAXNUM 100
typedef int KeyType ;
typedef struct {
KeyType key; /* 字典元素的关键码字
www.eeworm.com/read/201544/15402242
txt delphi object pascal 編譯器的編譯指令之七.txt
Delphi Object Pascal 編譯器的編譯指令之七({$X+} 擴充語法)(本人會連續刊登) (2001年3月17日)
网友更新 分类:杂类 作者:erp2 推荐:erp2 阅读次数:193
(http://www.codesky.net)
-------------------------------------------------------
www.eeworm.com/read/200272/15436016
txt b函数.txt
函数名: bar
功 能: 画一个二维条形图
用 法: void far bar(int left, int top, int right, int bottom);
程序例:
#include
#include
#include
#include
int main(voi
www.eeworm.com/read/200272/15436026
txt e函数.txt
函数名: ecvt
功 能: 把一个浮点数转换为字符串
用 法: char ecvt(double value, int ndigit, int *decpt, int *sign);
程序例:
#include
#include
#include
int main(void)
{
char *st
www.eeworm.com/read/112707/15478579
txt wdg_022b.txt
函数名: bar
功 能: 画一个二维条形图
用 法: void far bar(int left, int top, int right, int bottom);
程序例:
#include
#include
#include
#include
int main(
www.eeworm.com/read/111220/15516731
c thrice.c
/* 用弦截法求解方程的根 */
# include
# include
float f(float x)
{
float y;
y = ((x-8.0)*x+12.0)*x - 30.0;
return y;
}
float xpoint(float x1, float x2) /* 定义函数xpoint,求出弦
www.eeworm.com/read/110478/15533011
cpp queen.cpp
//回溯法
//八皇后问题
#include
#define QUEEN 8 //定义棋盘的大小
int* Q = new int[QUEEN]; //生成数组存储各行状态
//符合(不冲突),函数返回true
//不符合(冲突),函数返回false
bool Check(int* Q , int row){
for(i
www.eeworm.com/read/109343/15558695
txt fe.txt
fe
函数名: ecvt
功 能: 把一个浮点数转换为字符串
用 法: char ecvt(double value, int ndigit, int *decpt, int *sign);
程序例:
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int