首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
重者专题
冒泡排序(重者下沉)
#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趟
阅读更多...