五种排序的算法(包括主函数调用)
#include<stdio.h>#define MAX 100void Bubblesort(int r[],int n);void StraInsSort(int R[],int n);void
五种排序的算法(包括主函数调用)