📄 radixsort.h
字号:
#include <stdio.h>
#include <stdlib.h>
#define RADIX 10
#define KEY_SIZE 6
#define LIST_SIZE 20
typedef int KeyType;
typedef int OtherType;
typedef struct
{
KeyType key[KEY_SIZE]; /* 子关键字数组 */
OtherType other_data; /* 其它数据项 */
int next; /* 静态链域 */
} RecordType1;
typedef struct
{
RecordType1 r[LIST_SIZE+1]; /* r[0]为头结点 */
int length;
int keynum;
}SLinkList; /* 静态链表 */
typedef int PVector[RADIX];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -