代码搜索:短波差分

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

代码结果 10,000
www.eeworm.com/read/157521/11696500

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/344106/11908558

c ds1302时分.c

/************************************/ /*杭州电子&计算机工作室 */ /*http://www.hificat.com */ /*DS1302测试程序 */ /*目标器件:AT89S51 */ /*晶振:11.0592MHZ */ /*编译环境:Keil 7.50A */ /**************
www.eeworm.com/read/344070/11910286

c ds1302时分.c

/************************************/ /*杭州电子&计算机工作室 */ /*http://www.hificat.com */ /*DS1302测试程序 */ /*目标器件:AT89S51 */ /*晶振:11.0592MHZ */ /*编译环境:Keil 7.50A */ /**************
www.eeworm.com/read/339359/12241560

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