double.c
来自「稀疏矩阵、链表、图、队列、二叉树、多叉树、排序、遗传算法等的实现」· C语言 代码 · 共 19 行
C
19 行
/*
** 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 + =
减小字号Ctrl + -
显示快捷键?