代码搜索:短波差分

找到约 10,000 项符合「短波差分」的源代码

代码结果 10,000
www.eeworm.com/read/357066/10216654

cpp 二分法.cpp

#include #include #define EPS 5e-6 //根容许的误差 #define DELTA 1e-6 //|f(x)|容许的误差 float Bisection( float a,float b,float (*f)(float) ) { float c,fc,fa=f(a),fb=f(b); int n=1;
www.eeworm.com/read/425707/10335616

ppt 二分法.ppt

www.eeworm.com/read/279550/10421411

txt pku 1064 二分查找.txt

#include #include #include #include using namespace std; //PKU 1064 二分查找 #define NMAX 10005 #define MINI 0.000001 double len[NMAX]; void solve(
www.eeworm.com/read/353190/10466079

frm 二分法.frm

VERSION 5.00 Begin VB.Form Form1 Caption = "二分法解方程" ClientHeight = 3975 ClientLeft = 60 ClientTop = 345 ClientWidth = 7080 BeginProperty F
www.eeworm.com/read/352262/10569499

out 百分之.out

www.eeworm.com/read/422506/10633941

c 二分法.c

www.eeworm.com/read/277022/10687739

cpp 二分查找数程序.cpp

#include using namespace std; int s[10]={00,11,22,33,44,55,66,77,88,99}; int n=0,x=9,m,a; void f(int i,int j); int main(){ cout
www.eeworm.com/read/276181/10758314

c 二分查找2.c

#include "stdio.h" typedef struct { char *elem; int length; }sstable; void create(char **t) { int i; static char a[11]; *t=a; for(i=1;i