摘要:
/******************************** * 快速排序算法 * *********************************/#include /****************************** * 一次划分算法 * pList 需要排序的数组 * nLow 起始位置 * nHigh 结束位置 *****************************/int Partiton(int *pList,int nLow,int nHigh){ int nTmp = pList[nLow]; while(nLow... 阅读全文