快速排序c语言程序

#include<stdio.h> #define MAXSIZE 20//顺序表的最大长度 #define LT(a,b) ((a)<(b)) typedef int KeyType;//定义关键字的类型为整型 typedef char InfoType;//定义其余信息为字符类型 typedef struct {     KeyType key;//关键字项     InfoType othe
相关文章
相关标签/搜索