赞
踩
//编译环境vs 2019 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <iostream> using namespace std; #include <algorithm> int select(int arr[], int low, int high, int k) { int p = high - low + 1; //需要select的元素个数 if (p < 6) { sort(arr + 1, arr + p+1); //待比较的元素个数为p return arr[k]; //如果数组长度比较小,那就返回 } int q = p /<
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。