实现快速排序(C语言)

采用分治思想

#include 
#include 

int partition(int s[],int low,int high){
	int pivot=s[low];
	while(low=pivot)--high;
		s[low]=s[high];
		while(low

 

你可能感兴趣的:(算法)