⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 double.c

📁 稀疏矩阵、链表、图、队列、二叉树、多叉树、排序、遗传算法等的实现
💻 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 + -