博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode378. Kth Smallest Element in a Sorted Matrix
阅读量:6430 次
发布时间:2019-06-23

本文共 2001 字,大约阅读时间需要 6 分钟。

题目要求

Given a n x n matrix where each of the rows and columns are sorted in ascending order, find the kth smallest element in the matrix.Note that it is the kth smallest element in the sorted order, not the kth distinct element.Example:matrix = [   [ 1,  5,  9],   [10, 11, 13],   [12, 13, 15]],k = 8,return 13.Note: You may assume k is always valid, 1 ≤ k ≤ n2.

在一个从左到右,从上到下均有序的二维数组中,找到从小到第k个数字,这里需要注意,不要求一定要是唯一的值,即假设存在这样一个序列1,2,2,3,则第三个数字是2而不是3。

思路一:优先队列

当涉及到从一个集合中查找一个元素这样的问题时,我们往往会立刻想到查找的几种方式:有序数组查找,无序数组查找,堆排序。这里如果将二维数组转化为一维有序数组,成本未免太大了。同理,将其中所有元素都转化为堆,也会存在内存不足的问题。因此我们可以采用部分元素堆排序即可。即我们每次只需要可能构成第k个元素的值进行堆排序就可以了。

public int kthSmallest(int[][] matrix, int k) {        //优先队列        PriorityQueue
queue = new PriorityQueue
(); //将每一行的第一个元素放入优先队列中 for(int i = 0 ; i
{ int x; int y; int value; public Tuple(int x, int y, int value) { this.x = x; this.y = y; this.value = value; } @Override public int compareTo(Tuple o) { // TODO Auto-generated method stub return this.value - o.value; } }

思路二:二分法查找

二分查找的核心问题在于,如何找到查找的上界和下届。这边我们可以矩阵中的最大值和最小值作为上界和下界。然后不停的与中间值进行比较,判断当前矩阵中小于该中间值的元素有几个,如果数量不足k,就将左指针右移,否则,就将右指针左移。直到左右指针相遇。这里需要注意,不能在数量等于k的时候就返回mid值,因为mid值不一定在矩阵中存在。

public int kthSmallest2(int[][] matrix, int k){        int low = matrix[0][0], high = matrix[matrix.length-1][matrix[0].length-1];        while(low <= high) {            int mid = low + (high - low) / 2;            int count = 0;            int i = matrix.length-1 , j = 0;            //自矩阵左下角开始计算比mid小的数字的个数            while(i>=0 && j < matrix.length){                if(matrix[i][j]>mid) i--;                else{                    count+=i+1;                    j++;                }            }            if(count < k) {                low = mid + 1;            }else{                high = mid - 1;            }        }        return low;    }

转载地址:http://jkiga.baihongyu.com/

你可能感兴趣的文章
hdoj1114 Piggy-Bank(DP 完全背包)
查看>>
django从请求到响应的过程深入讲解
查看>>
p3新式类__new__使用和实例化
查看>>
Django之Model(一)--基础篇
查看>>
Windows 7使用VMware虚拟机的NAT不能上网的解决办法
查看>>
浅析HTML5的10大优势
查看>>
前向算法的数学意义上的实现
查看>>
实例讲解基于 React+Redux 的前端开发流程
查看>>
[转]Vim配置与高级技巧
查看>>
css实现两端对齐的3种方法
查看>>
关于阿里云服务器无外网带宽服务器
查看>>
数据绑定与MVVM
查看>>
windows服务 安装 卸载
查看>>
CSS 上下居中3种方案
查看>>
本地yum源搭建总结
查看>>
获得url参数
查看>>
Python内置方法大全
查看>>
008 常用样式
查看>>
(整理一)理解分布式事务,高并发下分布式事务的解决方案-附索引的利弊
查看>>
jeakins用户配置
查看>>