C语言冒泡查找法#include <stdio.h>void bubble_sort(int arr[], int len) { int i, j, temp; for (i = 0; i < len - 1; i++)//趟数 { int flag = 1;//假设这一段数据已经有序 for (j = 0; j < len - 1 - i; j++)//每一趟过程 if (arr[j] > arr[j + 1]) { temp = arr[j]...