兩種冒泡排序方法以及優化算法

1.向後冒泡圖解 代碼實現: #include<iostream> using namespace std; //向後冒泡,求出每趟最大值,放到len-1位置 void BubbleSort(int *arr, int len) { int tmp = 0; int i; for (i = 0;i<len-1;i++) { for (int j = 0;j <len-1-i;j++)/
相關文章
相關標籤/搜索