#include <vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @param k int整型 * @return int整型 */ void quick_sort(vector<int>&nums, int l, int r) { if (l >= r) return; int x = nums[l + r >> 1], i = l - 1, j = r + 1; while...