第十四周-交换排序之快速排序(以中间位置的元素为标准)
问题描述:交换排序之快速排序。#include #define MaxSize 20typedef int KeyType; //定义关键字类型typedef char InfoType[10];typedef struct //记录类型{ KeyType key; //关键字项 InfoType data;