代码搜索:float

找到约 10,000 项符合「float」的源代码

代码结果 10,000
www.eeworm.com/read/358469/10188848

c c4_6_1.c

#include"stdio.h" #include"stdlib.h" #include"math.h" #define pi 3.1415926536 #define NN 2048 main() { int i,j,k,m,N,r,s,t; static float a0,a1,b0,b1,p,z,g; static int a[NN]; sta
www.eeworm.com/read/358235/10193441

c stats.c

/*************************************************************************/ /* */ /* Statistical routines for C4.5 */ /* ----------------------------- */ /* */ /*********
www.eeworm.com/read/358235/10193456

c build.c

/*************************************************************************/ /* */ /* Central tree-forming algorithm incorporating all criteria */ /* --------------------------------
www.eeworm.com/read/358235/10193458

c consultr.c

/*************************************************************************/ /* */ /* Classify items interactively using a set of rules */ /* ---------------------------------------------
www.eeworm.com/read/358191/10194227

cpp time2.cpp

// worst case insertion sort times // correct way #include #include #include "insort.h" void main(void) { int a[1000], n, i, step = 10; long counter; float
www.eeworm.com/read/358191/10194367

cpp time3.cpp

// overhead time for insertion sort timing #include #include #include "insort.h" void main(void) { int a[1000], n, i, step = 10; long counter; float second
www.eeworm.com/read/358191/10194499

cpp time4.cpp

// bad way to time insertion sort #include #include #include "insort.h" void main(void) { int a[1000], n, i, step = 10; long counter; float seconds; cloc
www.eeworm.com/read/357925/10198416

cpp fft.cpp

/********************************************************************** FFT.cpp Dominic Mazzoni September 2000 This file contains a few FFT routines, including a real-FFT routine that is
www.eeworm.com/read/357433/10209805

txt 新建 文本文档 (2).txt

{ LinkList p,q,s; p=L->next;q=p->next;s=q->next;p->next=NULL; while(s->next) { q->next=p;p=q; q=s;s=s->next; } q->next=p;s->next=q;L->next=s; }22 13 for(p=L->next;p&&p-
www.eeworm.com/read/357389/10210230

c ex_admm_stats.c

///////////////////////////////////////////////////////////////////////// //// EX_ADMM_STATS.C //// ////