6-3 選擇排序

編程實現選擇排序函數。void selectionSort(int arr[], int n);。其中arr存放待排序的數據,n爲數組長度(1≤n≤1000)。 函數接口定義如下: 請實現selectionSort函數,使排序後的數據從小到大排列。 裁判測試程序樣例:   /* 你的代碼將嵌在這裏 */ void selectionSort(int arr[], int n) {     int
相關文章
相關標籤/搜索