编程实现冒泡排序函数。void bubblesort(int arr[], int n);。其中arr存放待排序的数据,n为数组长度(1≤n≤1000)。
时间: 2023-04-25 07:06:25 浏览: 168
冒泡排序BubbleSort(void函数实现)
void bubblesort(int arr[], int n) {
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < n - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
阅读全文