代码搜索:移相法

找到约 10,000 项符合「移相法」的源代码

代码结果 10,000
www.eeworm.com/read/221894/14715383

h 10_1.h

#ifndef ARRAY_BASED_SORTING_FUNCTIONS #define ARRAY_BASED_SORTING_FUNCTIONS //用直接插入排序法对数组A中的元素进行升序排列 template void InsertionSort(T A[], int n) { int i, j; T temp; // 将
www.eeworm.com/read/221687/14729724

plg shunxuchazhaofa.plg

Build Log --------------------Configuration: 顺序查找法 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\王富强\LOC
www.eeworm.com/read/221324/14744430

txt c语言库函数(q类字母).txt

函数名: qsort 功 能: 使用快速排序例程进行排序 用 法: void qsort(void *base, int nelem, int width, int (*fcmp)()); 程序例: #include #include #include int sort_function( co
www.eeworm.com/read/221324/14744431

txt c语言库函数(s类字母) - 3.txt

函数名: sound 功 能: 以指定频率打开PC扬声器 用 法: void sound(unsigned frequency); 程序例: /* Emits a 7-Hz tone for 10 seconds. Your PC may not be able to emit a 7-Hz tone. */ #include
www.eeworm.com/read/221324/14744435

txt c语言库函数(v类字母).txt

函数名: vfprintf 功 能: 送格式化输出到一流中 用 法: int vfprintf(FILE *stream, char *format, va_list param); 程序例: #include #include #include FILE *fp; in
www.eeworm.com/read/121616/14747122

txt [c函数之f].txt

函数名: fabs 功 能: 返回浮点数的绝对值 用 法: double fabs(double x); 程序例: #include #include int main(void) { float number = -1234.0; printf("number: %f absolute value: %f\n"
www.eeworm.com/read/121616/14747137

txt c函数之i.txt

函数名: imagesize 功 能: 返回保存位图像所需的字节数 用 法: unsigned far imagesize(int left, int top, int right, int bottom); 程序例: #include #include #include #include
www.eeworm.com/read/121616/14747161

txt [c函数之d].txt

函数名: delay 功 能: 将程序的执行暂停一段时间(毫秒) 用 法: void delay(unsigned milliseconds); 程序例: /* Emits a 440-Hz tone for 500 milliseconds */ #include int main(void) { sound(440); delay(500
www.eeworm.com/read/121616/14747174

txt c函数之w.txt

函数名: wherex 功 能: 返回窗口内水平光标位置 用 法: int wherex(void); 程序例: #include int main(void) { clrscr(); gotoxy(10,10); cprintf("Current location is X: %d Y: %d\r\n", wherex(), w
www.eeworm.com/read/121616/14747200

txt c函数之l.txt

函数名: labs 功 能: 取长整型绝对值 用 法: long labs(long n); 程序例: #include #include int main(void) { long result; long x = -12345678L; result= labs(x); printf("numbe