标签:
结构体定义:
struct ElemType { int ID; int Key; }; struct SQ_LIST { ElemType elem[100000]; int Length; };
经典排序算法---前言
原文地址:http://www.cnblogs.com/INnoVationv2/p/5503685.html