[LintCode] 第k大元素
基于快速排序:
- class Solution {
- public:
- /*
- * param k : description of k
- * param nums : description of array and index 0 ~ n-1
- * return: description of return
- */
- int kthLargestElement(int k, vector<int> nums) {
- // write your code here
- int left = , right = nums.size() - ;
- while (true) {
- int pos = partition(nums, left, right);
- if (pos == k - ) return nums[pos];
- if (pos < k - ) left = pos + ;
- if (pos > k - ) right = pos - ;
- }
- }
- private:
- int partition(vector<int>& nums, int left, int right) {
- int pivot = nums[left];
- int l = left + , r = right;
- while (l <= r) {
- if (nums[l] < pivot && nums[r] > pivot)
- swap(nums[l++], nums[r--]);
- if (nums[l] >= pivot) l++;
- if (nums[r] <= pivot) r--;
- }
- swap(nums[left], nums[r]);
- return r;
- }
- };
基于最大堆:
- class Solution {
- public:
- /*
- * param k : description of k
- * param nums : description of array and index 0 ~ n-1
- * return: description of return
- */
- inline int left(int idx) {
- return (idx << ) + ;
- }
- inline int right(int idx) {
- return (idx << ) + ;
- }
- void max_heapify(vector<int>& nums, int idx) {
- int largest = idx;
- int l = left(idx), r = right(idx);
- if (l < heap_size && nums[l] > nums[largest])
- largest = l;
- if (r < heap_size && nums[r] > nums[largest])
- largest = r;
- if (largest != idx) {
- swap(nums[idx], nums[largest]);
- max_heapify(nums, largest);
- }
- }
- void build_max_heap(vector<int>& nums) {
- heap_size = nums.size();
- for (int i = (heap_size >> ) - ; i >= ; i--)
- max_heapify(nums, i);
- }
- int kthLargestElement(int k, vector<int> nums) {
- // write your code here
- build_max_heap(nums);
- for (int i = ; i < k; i++) {
- swap(nums[], nums[heap_size - ]);
- heap_size--;
- max_heapify(nums, );
- }
- return nums[heap_size];
- }
- private:
- int heap_size;
- };
[LintCode] 第k大元素的更多相关文章
- LintCode——第K大元素
第K大元素:在数组num中找到第k大的元素(可以交换数组中的元素的位置) 样例: 数组 [9,3,2,4,8],第三大的元素是 4 数组 [1,2,3,4,5],第一大的元素是 5,第二大的元素是 4 ...
- lintcode 中等题:kth-largest-element 第k大元素
题目 第k大元素 在数组中找到第k大的元素 样例 给出数组[9,3,2,4,8],第三大的元素是4 给出数组 [1,2,3,4,5],第一大的元素是5,第二大的元素是4,第三大的元素是3,以此类推 注 ...
- 【转载】两个排序数组的中位数 / 第K大元素(Median of Two Sorted Arrays)
转自 http://blog.csdn.net/zxzxy1988/article/details/8587244 给定两个已经排序好的数组(可能为空),找到两者所有元素中第k大的元素.另外一种更加具 ...
- 寻找两个已序数组中的第k大元素
寻找两个已序数组中的第k大元素 1.问题描述 给定两个数组与,其大小分别为.,假定它们都是已按照增序排序的数组,我们用尽可能快的方法去求两个数组合并后第大的元素,其中,.例如,对于数组,.我们记第大的 ...
- 面试题:求第K大元素(topK)?
一.引言二.普通算法算法A:算法B:三.较好算法算法C:算法D:四.总结 一.引言 这就是类似求Top(K)问题,什么意思呢?怎么在无序数组中找到第几(K)大元素?我们这里不考虑海量数据,能装入内 ...
- java优先级队列的使用 leecode.703.数据流中的第K大元素
//设计一个找到数据流中第K大元素的类(class). //注意是排序后的第K大元素,不是第K个不同的元素. class KthLargest { private PriorityQueue<I ...
- [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 ...
- 数据流中的第k大元素的golang实现
设计一个找到数据流中第K大元素的类(class).注意是排序后的第K大元素,不是第K个不同的元素. 你的 KthLargest 类需要一个同时接收整数 k 和整数数组nums 的构造器,它包含数据流中 ...
- 第k大元素
在数组中找到第k大的元素 样例 给出数组[9,3,2,4,8],第三大的元素是4 给出数组 [1,2,3,4,5],第一大的元素是5,第二大的元素是4,第三大的元素是3,以此类推 注意 你可以交换数组 ...
随机推荐
- django inspectdb
使用inspectdb --通过已有数据库表生成 model.pyinspectdb辅助工具检查你的settings文件指向的数据库,决定你表示你的表的Django模型并打印Python模型代码到标 ...
- Linux-Vim常用操作
vim wangyunpeng.txt 创建一个wangyunpeng.txt文件 输入"i"进入插入模式 显示行号,需要在命令模式下输入":se nu" cp ...
- U盘装系统:安装GHOST Win7系统教程
可以搜索:装机吧 原文地址:http://www.zhuangjiba.com/jiaocheng/show-27-247-1.html
- ssl证书文件
证书(Certificate) - *.cer *.crt私钥(Private Key) - *.key证书签名请求(Certificate signing request) - *.csr 至于pe ...
- NYOJ 10 skiing (深搜和动归)
skiing 时间限制:3000 ms | 内存限制:65535 KB 难度:5 描写叙述 Michael喜欢滑雪百这并不奇怪. 由于滑雪的确非常刺激.但是为了获得速度.滑的区域必须向下倾斜.并且 ...
- A Translation for Quaternion 一篇对四元数的翻译
一篇写的非常好的博客:http://www.cnblogs.com/lookof/archive/2012/02/24/2360749.html
- python 安装 pyinstall 编译exe文件
$ pip install future 安装PyInstaller之前需确认首先安装了pywin32 下载地址:http://nchc.dl.sourceforge.net/project/pywi ...
- Python 统计代码的行数,Python脚本 统计代码
# coding=utf-8 import os import time # 需要统计的文件夹或者文件,这是在windows下运行的,如果使用Linux系统可以使用 basedir = '/app/l ...
- unity, rigidbody实现瞬移必须勾选is Kinematic
用itween让一个绑定了rigidbody的沿曲线移动,当移动到末端时瞬间返回起始状态重新播放. 发现在不勾选isKinematic的情况下是不可能实现上述需求的.因为在动力学模式下任何物体的位置和 ...
- Unity编辑器下获取动画的根运动状态并修改
我最初想直接修改.anim文件 但通过后来得到的信息,其实根运动状态储存在FBX.meta文件里,转出的.anim文件虽然也有根运动的信息但是算是塌陷过的,无法进行开关操作. 这是我针对有根运动.an ...