The suggested solution mentioned an algorithm which is very similar to my initial thought : heapfy the whole input array into a minimum heap and then popup minimum for k times. To heapfy an array of length n will take O(2n) (the factor is 2),so this solution will take O(2n + k 2 logn) time. Let's call it option1.
My initial thought is to heapfy first k elements into a maximum heap and then compare the top element with each following input element to decide whether to remove and the top and insert the new one(see my previous article). So the time complexity of this solution will be O(2k + (n-k) 2 logk ). Let's call it option2.
Suppose k is a certain fixed number , so if only logk > 1 ( k>2) , the option1 should outperform the option2.
Java Implementation:
public class KSmallestA { public static void main(String[] args) { assertEquals(new int[]{1,2,3,4}, getKSmallest(new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, 4)); assertEquals(new int[]{1,2,3,4}, getKSmallest(new int[]{10, 9, 8, 7, 6, 5, 4, 3, 2, 1}, 4)); assertEquals(new int[]{21,22,14,18,9}, getKSmallest(new int[]{27, 14, 18, 22, 21, 91, 33, 36, 42, 78 , 9, 65, 101, 29}, 5)); } private static void assertEquals(int[] standard, int[] result) { Arrays.sort(standard); Arrays.sort(result); assert Arrays.equals(standard, result); } public static int[] getKSmallest(int[] nums , int k) { MinIntHeap heap = new MinIntHeap(nums, 0 , nums.length); int[] result = new int[k]; for (int i = 0 ; i < k ; i ++ ) { result[i] = heap.pop(); } return result; } } class MinIntHeap { private int[] nums; private int count; public MinIntHeap ( int[] nums, int offset, int count){ this.nums = new int[count+1]; // index 0 will not be used System.arraycopy(nums, offset, this.nums, 1, count); this.count = count; for ( int i = count/2 ; i > 0 ; i --) { swimDown(i); } } public int[] getAll() { int result[] = new int[count]; System.arraycopy(this.nums, 1, result, 0, count); return result; } private void swimUp (int i) { int parent = i/2; while (parent != 0 && nums[i] < nums[parent]) { swap ( i, parent); i = parent; parent = i/2; } } private void swimDown(int i) { int lchild = i * 2; if ( lchild > count ) return; int smaller = lchild; int rchild = lchild + 1; if (rchild <= count && nums[rchild] < nums[lchild]) smaller = rchild; while( nums[smaller] < nums[i]) { swap ( smaller, i); i = smaller; lchild = i * 2; if ( lchild > count ) return; smaller = lchild; rchild = lchild + 1; if (rchild <= count && nums[rchild] < nums[lchild]) smaller = rchild; } } private void swap (int i , int j) { int temp = nums[i]; nums[i] = nums[j]; nums[j] = temp; } public int peek() { return nums[1]; } public int pop() { swap(1, count--); swimDown(1); return nums[count + 1]; } //don't concern resizing array here public void add (int num) { nums[++count] = num; swimUp(count); } }
相关推荐
373._Find_K_Pairs_with_Smallest_Sums查找和最小的k对数字【LeetCode单题讲解系列】
标题 "the kth smallest elem" 暗示我们要讨论的是如何在数组或集合中找到第k小的元素,这是一个常见的算法问题,在计算机科学和数据结构领域具有重要意义。描述中提到的 "Clion" 是一个流行的C/C++集成开发环境,...
在本文档中,我们将会探索Java语言编写的LeetCode题解,该题解针对的是"Find K-th Smallest Pair Distance"这一具体问题。此问题要求我们对一个整数数组找出第k小的数对距离。数对距离是指一对整数之间的差的绝对值...
在编程题库平台LeetCode上,有一道著名的算法题,名为“Find K Pairs with Smallest Sums”。这道题要求求出两个未排序数组的k个最小和的组合。具体来说,假设有两个整数数组nums1和nums2,返回这两数组中所有可能的...
代码:// find K-th Smallest Pair Distancepublic int smallestDistancePair(int[] nums
"smallest-width"这个概念正是Android系统提供的一种解决方案,用于帮助开发者创建能够适应不同屏幕尺寸的应用。本文将深入探讨"smallest-width"的概念,以及如何利用它来实现Android自定义`dimens.xml`文件,以适应...
题目要求我们找出第K小的素数分数。在这个场景下,素数分数是指分子和分母都是素数的分数。 为了解决这个问题,首先需要了解素数的概念,素数是只有1和它本身两个正因数的自然数。然后需要了解如何对分数进行排序,...
378.Kth_Smallest_Element_in_a_Sorted_Matrix有序矩阵中第K小的元素【LeetCode单
AB PLC例程代码项目案例 【备注】 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用!有问题请及时沟通交流。 2、适用人群:计算机相关专业(如计科、信息安全、数据科学与大数据技术...
在处理这个问题之前,我们首先需要理解题目“Kth Smallest Element in a Sorted Matrix”的意思。这道题是LeetCode上的算法题目,要求求解在一个按行和列都排好序的矩阵中,找到第k小的元素。此类问题通常涉及到矩阵...
在编程领域,"k-th Smallest element in an array" 是一个常见的问题,它涉及到排序、查找和算法效率等核心概念。在这个问题中,目标是找到一个整数数组中第k小的元素,其中k是一个正整数。这个问题在数据结构和算法...
CP2K是一款开源程序,主要用于基于密度泛函理论(DFT)的量子化学和固体物理计算。CP2K特别擅长于利用第一原理方法模拟分子动力学,尤其是在大的生物分子、固体材料以及表面科学等领域中,CP2K可以进行从头算分子...
在Java语言实现的LeetCode题解中,"Kth Smallest Element in a BST"这一问题尤为引人注目,它涉及到了二叉树的遍历以及对树的特性进行深度利用。 二叉搜索树具有独特的特性:对于任意节点,其左子树中的所有元素都...
C程序,计算n个整数序列中的第k个最小数字。 该程序将最多进行9次计数排序,每个数字位置一次。 第一种将对“百毫”数字进行运算。 最后一种排序将对“一个”数字进行操作(MSD基数排序受启发)。 每种分类都...
在解决LeetCode上的668题时,涉及到对乘法表中第k小的数进行寻找。乘法表是由连续的正整数所构成,其中第i行和第j列的数是i*j。题目要求我们找出这样的一个数,它是这个乘法表中按升序排列时的第k个数。解决这个问题...
在处理多层嵌套循环生成的乘法表时,寻找第k小的数是一项具有挑战性的任务,需要高效的算法来优化查找性能。乘法表通常是一个矩阵,其行和列代表两个自然数序列的乘积,例如,第一行是1乘以1到n,第二行是2乘以1到n...
本篇文章主要讲解了如何使用Python语言来解决LeetCode上的一个特定问题——“Smallest Even Multiple”(最小偶数倍数)。具体到该问题,它要求编写一个函数,接收一个整数n作为输入,返回比n大的最小偶数倍数。 此...
AT_code_festival_2017_qualb_f Largest Smallest Cyclic Shift 的 AC 代码
c c语言_leetcode题解之0230_kth_smallest_element_in_a_bst
将您的过程解决方案编码到lib/smallest_multiple.rb文件中。 将您的面向对象的解决方案编码到lib/oo_smallest_multiple.rb文件中。 运行learn直到所有RSpec测试通过。 来源 -- 在Learn.co上查看并开始免费学习编码。