#include <stdio.h> #include <stdlib.h> //快排 的算法 void quick_sort(int arry[],int low,int high) { if(low>=high) return; int key=arry[low];  ...