數據結構——排序(C實現)

鏈接:http://www.javashuo.com/article/p-bjtzezfu-db.html 1、選擇排序-簡單選擇排序 選擇排序是最簡單的一種基於O(n^2)時間複雜度的排序算法,基本思想是從 i=0位置開始到i=n-1每次通過內循環找出i位置到n-1位置的最大(小)值。 實現: void selectSort(int arr[],int n) { int i,j,minV
相關文章
相關標籤/搜索