原题: 假设有两个有序的整型数组int *a1, int *a2,长度分别为m和n.试用C语言写出一个函数选取两个数组中最大的K个值(K可能大于m+n)写到int *a3中,保持a3降序,并返回a3实际的长度. 函数原型为int merge(int *a3, int *a1, int m, int *a2, int n, int k) 解题思路:此题为两个有序数组的合并: 设置两个下标索引 i和j,逐个比较a1[i]和a2[j],大的进入a3; 当a1或者a2已经全部被排序,就将另一个数组部…
题目原文 Selection in two sorted arrays. Given two sorted arrays a[] and b[], of sizes n1 and n2, respectively, design an algorithm to find the kth largest key. The order of growth of the worst case running time of your algorithm should be logn, where n…
4. 寻找两个有序数组的中位数 https://leetcode-cn.com/problems/median-of-two-sorted-arrays/ 最简单的就是用最简单的,把两个数组分别抽出然后排成一个排好序的数组,然后根据中位数的定义,直接根据中间的索引值得到中位数的值. 如果上面这么说明有些抽象的话,我们来看看代码: Show the Code. class Solution { public double findMedianSortedArrays(int[] nums1, in…