基于快速排序:

  1. class Solution {
  2. public:
  3. /*
  4. * param k : description of k
  5. * param nums : description of array and index 0 ~ n-1
  6. * return: description of return
  7. */
  8. int kthLargestElement(int k, vector<int> nums) {
  9. // write your code here
  10. int left = , right = nums.size() - ;
  11. while (true) {
  12. int pos = partition(nums, left, right);
  13. if (pos == k - ) return nums[pos];
  14. if (pos < k - ) left = pos + ;
  15. if (pos > k - ) right = pos - ;
  16. }
  17. }
  18. private:
  19. int partition(vector<int>& nums, int left, int right) {
  20. int pivot = nums[left];
  21. int l = left + , r = right;
  22. while (l <= r) {
  23. if (nums[l] < pivot && nums[r] > pivot)
  24. swap(nums[l++], nums[r--]);
  25. if (nums[l] >= pivot) l++;
  26. if (nums[r] <= pivot) r--;
  27. }
  28. swap(nums[left], nums[r]);
  29. return r;
  30. }
  31. };

基于最大堆:

  1. class Solution {
  2. public:
  3. /*
  4. * param k : description of k
  5. * param nums : description of array and index 0 ~ n-1
  6. * return: description of return
  7. */
  8. inline int left(int idx) {
  9. return (idx << ) + ;
  10. }
  11. inline int right(int idx) {
  12. return (idx << ) + ;
  13. }
  14. void max_heapify(vector<int>& nums, int idx) {
  15. int largest = idx;
  16. int l = left(idx), r = right(idx);
  17. if (l < heap_size && nums[l] > nums[largest])
  18. largest = l;
  19. if (r < heap_size && nums[r] > nums[largest])
  20. largest = r;
  21. if (largest != idx) {
  22. swap(nums[idx], nums[largest]);
  23. max_heapify(nums, largest);
  24. }
  25. }
  26. void build_max_heap(vector<int>& nums) {
  27. heap_size = nums.size();
  28. for (int i = (heap_size >> ) - ; i >= ; i--)
  29. max_heapify(nums, i);
  30. }
  31. int kthLargestElement(int k, vector<int> nums) {
  32. // write your code here
  33. build_max_heap(nums);
  34. for (int i = ; i < k; i++) {
  35. swap(nums[], nums[heap_size - ]);
  36. heap_size--;
  37. max_heapify(nums, );
  38. }
  39. return nums[heap_size];
  40. }
  41. private:
  42. int heap_size;
  43. };

[LintCode] 第k大元素的更多相关文章

  1. LintCode——第K大元素

    第K大元素:在数组num中找到第k大的元素(可以交换数组中的元素的位置) 样例: 数组 [9,3,2,4,8],第三大的元素是 4 数组 [1,2,3,4,5],第一大的元素是 5,第二大的元素是 4 ...

  2. lintcode 中等题:kth-largest-element 第k大元素

    题目 第k大元素 在数组中找到第k大的元素 样例 给出数组[9,3,2,4,8],第三大的元素是4 给出数组 [1,2,3,4,5],第一大的元素是5,第二大的元素是4,第三大的元素是3,以此类推 注 ...

  3. 【转载】两个排序数组的中位数 / 第K大元素(Median of Two Sorted Arrays)

    转自 http://blog.csdn.net/zxzxy1988/article/details/8587244 给定两个已经排序好的数组(可能为空),找到两者所有元素中第k大的元素.另外一种更加具 ...

  4. 寻找两个已序数组中的第k大元素

    寻找两个已序数组中的第k大元素 1.问题描述 给定两个数组与,其大小分别为.,假定它们都是已按照增序排序的数组,我们用尽可能快的方法去求两个数组合并后第大的元素,其中,.例如,对于数组,.我们记第大的 ...

  5. 面试题:求第K大元素(topK)?

    一.引言二.普通算法算法A:算法B:三.较好算法算法C:算法D:四.总结 一.引言 ​ 这就是类似求Top(K)问题,什么意思呢?怎么在无序数组中找到第几(K)大元素?我们这里不考虑海量数据,能装入内 ...

  6. java优先级队列的使用 leecode.703.数据流中的第K大元素

    //设计一个找到数据流中第K大元素的类(class). //注意是排序后的第K大元素,不是第K个不同的元素. class KthLargest { private PriorityQueue<I ...

  7. [Swift]LeetCode703. 数据流中的第K大元素 | Kth Largest Element in a Stream

    Design a class to find the kth largest element in a stream. Note that it is the kth largest element ...

  8. 数据流中的第k大元素的golang实现

    设计一个找到数据流中第K大元素的类(class).注意是排序后的第K大元素,不是第K个不同的元素. 你的 KthLargest 类需要一个同时接收整数 k 和整数数组nums 的构造器,它包含数据流中 ...

  9. 第k大元素

    在数组中找到第k大的元素 样例 给出数组[9,3,2,4,8],第三大的元素是4 给出数组 [1,2,3,4,5],第一大的元素是5,第二大的元素是4,第三大的元素是3,以此类推 注意 你可以交换数组 ...

随机推荐

  1. django inspectdb

    使用inspectdb  --通过已有数据库表生成 model.pyinspectdb辅助工具检查你的settings文件指向的数据库,决定你表示你的表的Django模型并打印Python模型代码到标 ...

  2. Linux-Vim常用操作

    vim wangyunpeng.txt 创建一个wangyunpeng.txt文件 输入"i"进入插入模式 显示行号,需要在命令模式下输入":se nu" cp ...

  3. U盘装系统:安装GHOST Win7系统教程

    可以搜索:装机吧 原文地址:http://www.zhuangjiba.com/jiaocheng/show-27-247-1.html

  4. ssl证书文件

    证书(Certificate) - *.cer *.crt私钥(Private Key) - *.key证书签名请求(Certificate signing request) - *.csr 至于pe ...

  5. NYOJ 10 skiing (深搜和动归)

    skiing 时间限制:3000 ms  |  内存限制:65535 KB 难度:5 描写叙述 Michael喜欢滑雪百这并不奇怪. 由于滑雪的确非常刺激.但是为了获得速度.滑的区域必须向下倾斜.并且 ...

  6. A Translation for Quaternion 一篇对四元数的翻译

    一篇写的非常好的博客:http://www.cnblogs.com/lookof/archive/2012/02/24/2360749.html

  7. python 安装 pyinstall 编译exe文件

    $ pip install future 安装PyInstaller之前需确认首先安装了pywin32 下载地址:http://nchc.dl.sourceforge.net/project/pywi ...

  8. Python 统计代码的行数,Python脚本 统计代码

    # coding=utf-8 import os import time # 需要统计的文件夹或者文件,这是在windows下运行的,如果使用Linux系统可以使用 basedir = '/app/l ...

  9. unity, rigidbody实现瞬移必须勾选is Kinematic

    用itween让一个绑定了rigidbody的沿曲线移动,当移动到末端时瞬间返回起始状态重新播放. 发现在不勾选isKinematic的情况下是不可能实现上述需求的.因为在动力学模式下任何物体的位置和 ...

  10. Unity编辑器下获取动画的根运动状态并修改

    我最初想直接修改.anim文件 但通过后来得到的信息,其实根运动状态储存在FBX.meta文件里,转出的.anim文件虽然也有根运动的信息但是算是塌陷过的,无法进行开关操作. 这是我针对有根运动.an ...