sortest.c
来自「数据库C语言开发工具包,可以方便地移植到嵌入式系统中」· C语言 代码 · 共 40 行
C
40 行
/****************************************************************************/
/* */
/* */
/* sortest.c v1.3 (c) 1990 Ken Harris */
/* */
/* */
/****************************************************************************/
/* */
/* This software is made available on an AS-IS basis. Unrestricted */
/* use is granted provided that the copyright notice remains intact. */
/* The author makes no warranties expressed or implied. */
/* */
/****************************************************************************/
#include <stdio.h>
main()
{
char rec[10];
int i;
printf("sortest - Test of Callable Record Sort\n\n");
printf("Sort-init...\n");
sort_init(6, "aa1.4");
printf("Release 100 records...\n");
for (i=99; i>0; i--)
{ sprintf(rec, "%04d", i);
printf("%d\n", i);
sort_release(rec);
}
printf("Sort-merge...\n");
sort_merge();
printf("Return 100 records...\n");
while (sort_return(rec))
printf("%4.4s\n",rec);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?