32,74,25,53,28,43,86,37中元素从小到大顺序排列将数组(32.74,25,53,28,43,86,37)中的元素按从小到大的顺序排列,每次可以交换任意两个元素,最少需要交换几次?需要过程

问题描述:

32,74,25,53,28,43,86,37中元素从小到大顺序排列
将数组(32.74,25,53,28,43,86,37)中的元素按从小到大的顺序排列,每次可以交换任意两个元素,最少需要交换几次?需要过程

#include "stdio.h"
int count;
void quicksort(int data[],int low,int high)
{/*用快速排序方法数组元素data[low..high]作排序*/
int i,pivot,j;
if(low