博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode-4-Median of Two Sorted Arrays
阅读量:5840 次
发布时间:2019-06-18

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

算法描述:

There are two sorted arrays nums1 and nums2 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)).

You may assume nums1 and nums2 cannot be both empty.

Example 1:

nums1 = [1, 3]nums2 = [2]The median is 2.0

Example 2:

nums1 = [1, 2]nums2 = [3, 4]The median is (2 + 3)/2 = 2.5

解题思路:利用二分法将两个数组分别分割,当数组分割结果的所有左边的值小于右边的值,则表示找到对应的值。

double findMedianSortedArrays(vector
& nums1, vector
& nums2) { if(nums1.size() > nums2.size()) return findMedianSortedArrays(nums2, nums1); int m = nums1.size(); int n = nums2.size(); int left = 0; int right = m; while(left <= right){ int partitionX = (left + right) /2; int partitionY = (m+n+1)/2 - partitionX; int maxLeftX = (partitionX==0) ? INT_MIN : nums1[partitionX-1]; int minRightX = (partitionX == m) ? INT_MAX : nums1[partitionX]; int maxLeftY = (partitionY ==0) ? INT_MIN : nums2[partitionY-1]; int minRightY = (partitionY == n) ? INT_MAX : nums2[partitionY]; if(maxLeftX <= minRightY && maxLeftY <= minRightX){ if((m+n)%2==0) return (double)(min(minRightY,minRightX)+max(maxLeftX, maxLeftY))/2; else return (double) max(maxLeftX, maxLeftY); } else if(maxLeftX > minRightY) right = partitionX - 1; else left = partitionX + 1; } return -1; }

 

转载于:https://www.cnblogs.com/nobodywang/p/10360873.html

你可能感兴趣的文章
选择排序
查看>>
SQL Server 数据库的数据和日志空间信息
查看>>
前端基础之JavaScript
查看>>
自己动手做个智能小车(6)
查看>>
自己遇到的,曾未知道的知识点
查看>>
P1382 楼房 set用法小结
查看>>
分类器性能度量
查看>>
docker 基础
查看>>
写一个bat文件,删除文件名符合特定规则,且更改日期在某
查看>>
我的友情链接
查看>>
写Use Case的一种方式,从oracle的tutorial抄来的
查看>>
【C#】protected 变量类型
查看>>
Ubuntu解压
查看>>
爬虫_房多多(设置随机数反爬)
查看>>
藏地密码
查看>>
爬虫去重(只是讲了去重的策略,没有具体讲实现过程,反正就是云里雾里)...
查看>>
react中将px转化为rem或者vw
查看>>
8816
查看>>
avcodec_open2()分析
查看>>
何如获取单选框中某一个选中的值
查看>>