#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <time.h> // 交换数组中两个元素的值 void swap(int* a, int* b) { int temp = *a; *a = *b; *b = temp; } // 将数组按照基准值进行划分 int partition(int arr[], int low, int high) { int pivot = arr[high]; // 选择最后一个元...