资 源 简 介
#define PARTIALLYSORTED_30 3
#define PARTIALLYSORTED_50 4
#define PARTIALLYSORTED_70 5
#define RANDOMIZE_QSORT 1
#define MERGE_SORT 2
#define SELECTION_SORT 3
#define BUBBLE_SORT 4
/ *---随机化快速排序---* /
int random_partition (int * arr、 int 开始,int 结束) ;
void random_quick_sort (int * arr、 int 开始,int 结束) ;
/*----------------------------------------------*/
/*-----------Merge Sort--------------------------*/
空的分区 (int arr [],int 低,int 高) ;
void 归并 (int arr [],int 低,年年高 int int) ;
/*------------------------------------------------*/
/ *---选择排序---* /
void sort_select (int n) ;
int; maxind(int m)
void swap1 (int * x int * y);
/*------------------------------------------------*/
/*-----------------Bubble sort--------------------*/
void recursive_bubble (int * 数组、 int 的大小) ;
/*-----------------------------