📄 double.c
字号:
/*
** The proper usage and copyright information for
** this software is covered in DSCRLic.TXT
** This code is Copyright 1999 by Dann Corbit
*/
/*
** Believe it or not, this is a complete routine to sort arrays of double.
** The define ETYPE_DOUBLE will cause allsort.h to generate functions that
** operate on array of double.
**
** Why all this bother and not just use a comparison function?
** Because the qsort() style interface is slow. This is a bit more painful,
** but the payoff in speed is worth it.
*/
#define ETYPE_DOUBLE
#include "allsort.h"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -