经典排序算法---前言

结构体定义:

struct ElemType {
	int ID;
	int Key;
};

struct SQ_LIST {
	ElemType elem[100000];
	int Length;
};

  

原文地址:https://www.cnblogs.com/INnoVationv2/p/5503685.html