代码搜索:查表法
找到约 10,000 项符合「查表法」的源代码
代码结果 10,000
www.eeworm.com/read/350773/10711078
exe 偏心压力法.exe
www.eeworm.com/read/276181/10758064
c 冒泡法改进.c
/* 冒泡法是数据排序的一种基本算法,它的基本方法是:相邻两元素进行比较,如有需要则进行交换,
每完成一次循环就将最小元素排在最后(如从大到小排序),下一次循环是将其他的数进行类似操作?
如将N 个数按从大到小排序,Turbo C语言程序函数
如下: */
void sort(int a[],int n);
www.eeworm.com/read/276181/10758074
c 穷举搜索法.c
www.eeworm.com/read/276181/10758264
c 递堆法.c
www.eeworm.com/read/276181/10758481
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/275311/10824487
mta 相干解调法.mta
www.eeworm.com/read/348857/10863159
frm 迭代法.frm
VERSION 5.00
Begin VB.Form Form22
BackColor = &H00FFFFFF&
Caption = "迭代法"
ClientHeight = 7365
ClientLeft = 60
ClientTop = 345
ClientWidt
www.eeworm.com/read/348857/10863170
frm 欧拉法.frm
VERSION 5.00
Begin VB.Form Form18
BackColor = &H00FFFFFF&
Caption = "欧拉法"
ClientHeight = 8700
ClientLeft = 60
ClientTop = 345
ClientWidt
www.eeworm.com/read/348857/10863264
frm 弦位法.frm
VERSION 5.00
Begin VB.Form Form25
BackColor = &H00FFFFFF&
Caption = "弦位法"
ClientHeight = 5115
ClientLeft = 60
ClientTop = 345
ClientWidt
www.eeworm.com/read/272005/10974365
txt fibonacci查找法.txt
//Fibonacci查找法Fibonaci.cpp
#include
typedef int KeyType;
typedef struct RecType
{KeyType key;}RecType;
int fib(int n)
{int i,f,f0=0,f1=1;
if(n==0) return 0;
if(n==1) return 1;