一:选择排序和冒泡排序 这两种排序比较简单,直接贴出代码: #include <stdio.h> void choose_sort(int *arr, int n); void bubble_sort(int *arr, int n); void show(int *arr, int n); int main() { ] = {, , , , , , , , , }; /*选择排序*/ choose_sort(arr, ); show(arr, ); /*冒泡排序*/ bubble_sort(…