代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/132554/14084098
txt fq.txt
fq
函数名: qsort
功 能: 使用快速排序例程进行排序
用 法: void qsort(void *base, int nelem, int width, int (*fcmp)());
程序例:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
i
www.eeworm.com/read/204479/15337759
c knight_path.c
/* 用回溯法解决骑士周游问题的算法*/
#include
#include
#define NUM 6 /*方阵为n*n的*/
#define MAXNUM NUM * NUM /* 栈中最大元素个数 */
struct Node {
int x, y, d;
};
typedef struc
www.eeworm.com/read/204479/15337802
c dic_hashopen_algo.c
/* 本程序是用开地址法实现散列的检索算法*/
#include
#define TRUE 1
#define FALSE 0
#define null -1 /* null为空结点标记 */
#define REGION_LEN 13
typedef int KeyType;
typedef struct {
KeyTy
www.eeworm.com/read/200272/15436012
txt q函数.txt
函数名: qsort
功 能: 使用快速排序例程进行排序
用 法: void qsort(void *base, int nelem, int width, int (*fcmp)());
程序例:
#include
#include
#include
int sort_function( const v
www.eeworm.com/read/200272/15436021
txt l函数.txt
函数名: labs
功 能: 取长整型绝对值
用 法: long labs(long n);
程序例:
#include
#include
int main(void)
{
long result;
long x = -12345678L;
result= labs(x);
printf("nu
www.eeworm.com/read/113794/15447860
c dualprog.c
#include
#include
#include
// 对偶单纯形法通用处理函数库
// Author: lubangjian
// Date: 2004/11/20
#define SUCCESS 1
#define FAIL 0
/*分配内存*/
void *_malloc(char *p
www.eeworm.com/read/112707/15478570
txt wdg_022q.txt
函数名: qsort
功 能: 使用快速排序例程进行排序
用 法: void qsort(void *base, int nelem, int width, int (*fcmp)());
程序例:
#include
#include
#include
int sort_function( co
www.eeworm.com/read/112707/15478580
txt wdg_022i.txt
函数名: imagesize
功 能: 返回保存位图像所需的字节数
用 法: unsigned far imagesize(int left, int top, int right, int bottom);
程序例:
#include
#include
#include
#include
www.eeworm.com/read/112707/15478582
txt wdg_022g.txt
函数名: gcvt
功 能: 把浮点数转换成字符串
用 法: char *gcvt(double value, int ndigit, char *buf);
程序例:
#include
#include
int main(void)
{
char str[25];
double num;
www.eeworm.com/read/111220/15516694
c onedim.c
/* 使用选择法排序 */
# include
void main()
{
int i, j, min, temp;
/* 定义一个整型得一维数组 */
int array[10];
/* 输入数据 */
printf("Please input ten integer: \n");
for(i=0; i