strings.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 strings.
** The define ETYPE_STRING will cause allsort.h to generate functions that
** operate on array of strings.
**
** 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_STRING
#include "allsort.h"

⌨️ 快捷键说明

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