📄 testsort.c
字号:
#include <ansidecl.h>#include <stdlib.h>#include <string.h>#include <stdio.h>intDEFUN(compare, (a, b), CONST PTR a AND CONST PTR b){ return strcmp (*(char **) a, *(char **) b);}intDEFUN_VOID(main){ char bufs[500][20]; char *lines[500]; size_t lens[500]; size_t i, j; srandom (1); for (i = 0; i < 500; ++i) { lens[i] = random() % 19; lines[i] = bufs[i]; for (j = 0; j < lens[i]; ++j) lines[i][j] = random() % 26 + 'a'; lines[i][j] = '\0'; } qsort (lines, 500, sizeof (char *), compare); for (i = 0; i < 500 && lines[i] != NULL; ++i) puts (lines[i]); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -