2024.1.30

快速排序降序

#include
#include
#include
int quick_sort(int arr[],int low,int high)
{
	//基准值
	int key=arr[low];
	int low1=low,high1=high;
	if(low>=high) return 0;
	while(lowkey)
				{
				low1++;
				}
				if(low1

2024.1.30_第1张图片

你可能感兴趣的:(数据结构)