數據結構排序(四)

交換排序:冒泡排序,快速排序 快速排序: 解釋說明: 穩定性:冒泡排序是不穩定的 時間複雜度: 快速排序不適合對小規模的序列進行排序 代碼: #include <stdio.h> #include <stdlib.h> void QuickSort(int a[],int low,int high){ int i,j,pivot,temp; if(low < high){ pivot =
相關文章
相關標籤/搜索