回復(fù)話題 |
|
上傳/修改頭像 | 排序算法總結(jié)
lyh2006 發(fā)表于 2010-08-13 23:51
Re:Procedure QuickSort(Var R :FileType; S,T: Integer); //對(duì)R[S..T]快速排序// Begin If S < T Then //當(dāng)R[S..T]為空或只有一個(gè)元素是無(wú)需排序// begin Partion(R, S, T, I); //對(duì)R[S..T]做劃分// .. |