utility.h

来自「一个遗传算法(GA)的实现。command line 的结构。输入输出格式请见命」· C头文件 代码 · 共 17 行

H
17
字号
/*----------------------------------------------------------------------------*/
/* utility.h                                                                  */
/*----------------------------------------------------------------------------*/
#ifndef _UTILITY
#define _UTILITY

#include <stdio.h>

void copyright();
void repchar(FILE *outfp,char *ch,int repcount);
void skip(FILE *outfp,int skipcount);
int ithruj2int(int i,int j,unsigned *from);
void fastsort(float *array,int i,int j);
float CalcFAFR(float *fuserscore,int iu,float *fimpscore,int ii);
float CalcFOMArea(float *fuserscore,int iu,float *fimpscore,int ii,float frthreshold);

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?