摘要: /******************************** * 快速排序算法 * *********************************/#include /****************************** * 一次划分算法 * pList 需要排序的数组 * nLow 起始位置 * nHigh 结束位置 *****************************/int Partiton(int *pList,int nLow,int nHigh){ int nTmp = pList[nLow]; while(nLow... 阅读全文
posted @ 2013-04-22 16:41 _ccx 阅读(328) 评论(0) 推荐(0) 编辑