using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.diagnostics;
sort(numbers, left, i - 1);
sort(numbers, j + 1, right);}}
/// /// 交換元素值
///
/// 陣列
/// 當前左邊索引
/// 當前右邊索引
private static void swap(int numbers, int i, int j)
public static void main()
;int[ ] max = getrand(0,9000,9000);
sw.start();
//這裡填寫要執行的**
//sort(max,0,max.length - 1);
sort_lcl.sort(max,0,max.length-1);
//這裡填寫要執行的**
sw.stop();
//for(int i = 0;i < max.length;i++)
//stringbuilder temp = new stringbuilder();
for(int i = 0;i < max.length;i++)
console.writeline(temp.tostring().substring(0,temp.length - 1));
console.writeline("測量例項得出的總執行時間(毫秒為單位):" + sw.elapsedmilliseconds);
console.writeline("總執行時間(計時器刻度標識):" + sw.elapsedticks);
console.writeline("計時器是否執行:" + sw.isrunning.tostring());
console.readline();
}/// /// 獲取無重複隨機數
///
///
///
///
///
private static int[ ] getrand(int minvalue,int maxvalue,int count)
int[ ] arrresult = new int[count];
int n = maxvalue;
random rand = new random();
for(int i = 0;i < count;i++)
return arrresult;}}
}
排序 快速排序(C )
1 演算法描述 1.1 設當前參加排序的陣列為array 0.n 1 選擇乙個元素 通常稱該元素為基準元素 作為基準元素 將小於或者等於基準元素的所有元素都移到基準元素的左邊 把大於或者等於基準元素的所有元素都移到分界元素的右邊 執行完 2 3 步驟後,基準元素左邊元素序列,基準元素,基準元素右邊元...
排序 快速排序(C )
如果看不懂這些乾巴巴的理 字,那就先不用看了,下面 中有詳細的注釋,大家可以先跟著 走幾遍,回過頭來再看這些文字描述,總之 紙上得來終覺淺,絕知此事要躬行。排序演算法哪家強,從實際應用的角度上將,快排表現很好。很自然地,人們會覺得短陣列比長陣列更好處理,因此可能會想到將原始陣列分為若干各子部分然後分...
快速排序 c
快速排序應該是目前最快,也是最常用的一種排序演算法。它將乙個集合劃分成兩個子集合,然後繼續遞迴來完成最終排序。具體做法 1.選取集合最右端的元素作為乙個參照物,稱之為 樞紐 pivot 2.開始計算分割位置。在計算時,進行元素交換,確保左側元素都小於樞紐,而右側都大於樞紐。3.根據分割位置,分別遞迴...