文件名称:待排序的记录类型的定义如下-数据结构-清华大学严蔚敏
文件大小:3.3MB
文件格式:PPT
更新时间:2024-05-15 11:36:38
数据结构
待排序的记录类型的定义如下: #define MAX_SIZE 100 Typedef int KeyType ; typedef struct RecType { KeyType key ; /* 关键字码 */ infoType otherinfo ; /* 其他域 */ }RecType ; typedef struct Sqlist { RecType R[MAX_SIZE] ; int length ; }Sqlist ;