快排(C语言)

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

快排(C语言)_第1张图片

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