leetcode-215-数组中的第K个最大元素

一 基于快速排序的选择方法

//  class Solution {
//  public:
//      int findKthLargest(vector& nums, int k) {
//          int n = nums.size();
//          int pos = 0;
//          pos = quickSelcet(nums,k);
//          return pos;
//      }
//  private:
//      int quickSelcet(vector& nums, int k){
//          int partition = nums[rand() % nums.size()];
//          vectorsmall,equal,big;
//          for(int n : nums){
//              if(n < partition) small.emplace_back(n);
//              else if(n > partition) big.emplace_back(n);
//              else equal.emplace_back(n);
//          }
//          if(k <= big.size()) { return quickSelcet(big,k);}
//          else if(k > nums.size() - small.size()) {return quickSelcet(small, small.size() + k - nums.size());}
//          else return partition;
//      }
//  };

二 基于堆排序的选择方法

你可能感兴趣的:(C及python语言学习,leetcode,算法,c++)