冒泡排序代碼實現

#include<iostream> using namespace std; const int BUFFSIZE = 10; int Bubble_Sort(int Arr[]); int main() { int Arr[BUFFSIZE] = { 88,1,59,105,9,2,8,15,6,10 }; // 待排序元素 Bubble_Sort(Arr) //排序
相關文章
相關標籤/搜索