重者专题

冒泡排序(重者下沉)

#include <iostream>using namespace std; //..............方法1:冒泡排序(自上而下扫描,“重者沉”).........................//void BubbleSort(int *list,int n){ int i; int j; int x; int flag;  for (i=0;i<n-1;i++)//扫描n-1趟