【Median of Two Sorted Arrays】cpp
题目:
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
代码:
class Solution {
public:
double findMedianSortedArrays(int A[], int m, int B[], int n)
{
int total = m+n;
if(total & 0x1)
{
return Solution::find_kth(A,m,B,n,(m+n)/+);
}
else
{
return ( Solution::find_kth(A,m,B,n,(m+n)/) + Solution::find_kth(A,m,B,n,(m+n)/+) ) / 2.0;
}
}
static int find_kth(int A[], int m, int B[], int n, int k)
{
// make sure m is less or equal than n
if(m>n) return find_kth(B,n,A,m,k);
// finish conditions
if (m==) return B[k-];
if (k==) return std::min(A[],B[]);
// binary search
int pos_A = std::min(k/,m);
int pos_B = k - pos_A;
if (A[pos_A-] < B[pos_B-])
{
return Solution::find_kth(A+pos_A, m-pos_A, B, n, k-pos_A);
}
else if (A[pos_A-] > B[pos_B-])
{
return Solution::find_kth(A, m, B+pos_B, n-pos_B, k-pos_B);
}
else
{
return A[pos_A-];
}
}
};
Tips:
1. 采用二分查找,需要判断一下边界条件。
2. 这里用到一个技巧,始终保证m小于n,如果不满足就做一次转换
========================================
第二次过这道题,OJ的接口已经改成vector的了。
第一遍能记得大概的思路,但是涉及到边界细节,还是有些无力。
class Solution {
public:
double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
const int m = nums1.size();
const int n = nums2.size();
int k = m+n;
if ( k & ) // odd
{
return Solution::findMedian(nums1, , m-, nums2, , n-, (m+n)/+);
}
else // even
{
return (
Solution::findMedian(nums1,, m-, nums2, , n-, (m+n)/) +
Solution::findMedian(nums1, , m-, nums2, , n-, (m+n)/+) ) /2.0;
}
}
static double findMedian(
vector<int>& nums1, int begin1, int end1,
vector<int>& nums2, int begin2, int end2,
int k
)
{
// make sure "end1-begin1" <= "end2-begin2"
if ( end1-begin1 > end2-begin2 )
{
return Solution::findMedian(nums2, begin2, end2, nums1, begin1, end1, k);
}
// finish conditions
if ( begin1>end1 ) return nums2[begin2+k-];
if ( k== ) return std::min(nums1[begin1], nums2[begin2]);
// recursive branchs
int local1 = std::min(k/, end1-begin1+);
int local2 = k-local1;
if ( nums1[begin1+local1-]<nums2[begin2+local2-] )
{
return Solution::findMedian(nums1, begin1+local1, end1, nums2, begin2, end2, local2);
}
else if ( nums1[begin1+local1-]>nums2[begin2+local2-] )
{
return Solution::findMedian(nums1, begin1, end1, nums2, begin2+local2, end2, local1);
}
else
{
return nums1[begin1+local1-];
}
}
};
tips:
主要是几个细节
1. 长度是奇数和偶数要分别处理:对于奇数长度的median就是中间的那个元素;对于偶数长度的median就是中间那两个位置元素的均值
2. 既然是递归就一定要有终止条件,这里的终止条件有两个:
a) 有一个数组走到头了
b) 还需要挑出来的元素个数为1(即k==1)
遇上上述两个条件,递归可以不用往下进行了。
3. 还是强调一个技巧,需要判断两个数组长短的时候,不如再一开始就限定好传进来的哪个数组长,哪个数组短
即,
// make sure "end1-begin1" <= "end2-begin2"
if ( end1-begin1 > end2-begin2 )
{
return Solution::findMedian(nums2, begin2, end2, nums1, begin1, end1, k);
}
这样一来就省去了很多的代码(比如已经知道了nums1的长度一定小于nums2的长度,就可以得到local1了)
4. 以前有个思维限制,既然binary search就一定要每次排除k个,那么nums1要排除k/2个,nums2要排除k/2个喽。。。这是个比较大的思维误区,由于是两个数组,每个多长都不一定,不一定两个数组都干掉相同长度;况且,k可能是奇数或者偶数,讨论起来特别麻烦。
因此,干脆确定短的一个数组往后推的长度,再用总共需要挑出来的数字减去数组一用过的长度,剩下的就是第二个数组可以往后推的长度了。
这道题非常好 思路+细节都有值得学习的地方,虽然是第二次AC了,但还是觉得受益。
【Median of Two Sorted Arrays】cpp的更多相关文章
- 【Remove Duplicates from Sorted List 】cpp
题目: 第一次刷的时候漏掉了这道题. Given a sorted linked list, delete all duplicates such that each element appear o ...
- 【Search In Rotated Sorted Array】cpp
题目: Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 ...
- 【Remove Duplicates from Sorted Array】cpp
题目: https://leetcode.com/problems/remove-duplicates-from-sorted-array/ Given a sorted array, remove ...
- 【算法之美】求解两个有序数组的中位数 — leetcode 4. Median of Two Sorted Arrays
一道非常经典的题目,Median of Two Sorted Arrays.(PS:leetcode 我已经做了 190 道,欢迎围观全部题解 https://github.com/hanzichi/ ...
- 【转载】两个排序数组的中位数 / 第K大元素(Median of Two Sorted Arrays)
转自 http://blog.csdn.net/zxzxy1988/article/details/8587244 给定两个已经排序好的数组(可能为空),找到两者所有元素中第k大的元素.另外一种更加具 ...
- 【LeetCode】4. Median of Two Sorted Arrays (2 solutions)
Median of Two Sorted Arrays There are two sorted arrays A and B of size m and n respectively. Find t ...
- LeetCode 4. Median of Two Sorted Arrays & 归并排序
Median of Two Sorted Arrays 搜索时间复杂度的时候,看到归并排序比较适合这个题目.中位数直接取即可,所以重点是排序. 再来看看治阶段,我们需要将两个已经有序的子序列合并成一个 ...
- 《LeetBook》leetcode题解(4): Median of Two Sorted Arrays[H]——两个有序数组中值问题
我现在在做一个叫<leetbook>的免费开源书项目,力求提供最易懂的中文思路,目前把解题思路都同步更新到gitbook上了,需要的同学可以去看看 书的地址:https://hk029.g ...
- 4. Median of Two Sorted Arrays(topK-logk)
4. Median of Two Sorted Arrays 题目 There are two sorted arrays nums1 and nums2 of size m and n respec ...
随机推荐
- 自己实现的简单的grid
12年在第一家公司的时候,有过很长一段时间在前端的使用研究上.一开始的时候使用ExtJs4.0 MVC 来开发前端,觉得里面的风转的组件非常好用,Panel.window.tree等等,简化了对于前端 ...
- Visual Studio 2015 终于还是装上了
win8.1系统 vs2015.preview_ult_CHT.iso 大小4.46G, http://download.microsoft.com/download/9/9/1/99133C05-3 ...
- IOS给图片增加水印(图片、文字)
在网上发现很多人使用 CGContextDrawImage(context,CGRectMake(0,0,self.width,self.height),[image CGImage]); //原图 ...
- ehcache常用API整理
鉴于csdn的blog的不稳定, 及混乱的编辑器, 和无上传功能, 遂决定彻底投诚javaeye的blog. 数月前整理的一个东西, 作为cache的扫盲文档.参考了它的官方文档. 对ehcache感 ...
- Uploadify 3.2 参数属性、事件、方法函数详解以及配置
一.属性 属性名称 默认值 说明 auto true 设置为true当选择文件后就直接上传了,为false需要点击上传按钮才上传 . buttonClass ” 按钮样式 buttonCursor ‘ ...
- CUDA:Supercomputing for the Masses (用于大量数据的超级计算)-第七节
第七节:使用下一代CUDA硬件,快乐加速度 原文链接 Rob Farber 是西北太平洋国家实验室(Pacific Northwest National Laboratory)的高级科研人员.他在多个 ...
- Apache RocketMQ 正式开源分布式事务消息
近日,Apache RocketMQ 社区正式发布4.3版本.此次发布不仅包括提升性能,减少内存使用等原有特性增强,还修复了部分社区提出的若干问题,更重要的是该版本开源了社区最为关心的分布式事务消息, ...
- spring中@Autowrite注解和@Resource的区别
spring不但支持自己定义的@Autowired注解,还支持几个由JSR-250规范定义的注解,它们分别是@Resource.@PostConstruct以及@PreDestroy. @Resour ...
- react组件间的传值方法
关于react的几个网站: http://react.css88.com/ 小书:http://huziketang.mangojuice.top/books/react/ http://www.re ...
- STL笔记(こ)--删除数组中重复元素
使用STL中的Unique函数: #include<bits/stdc++.h> using namespace std; void fun(int &n) //配套for_eac ...