leetcode题库——两个排序数组的中位数

题目描述:

给定两个大小为 m 和 n 的有序数组 nums1 和 nums2 

请找出这两个有序数组的中位数。要求算法的时间复杂度为 O(log (m+n)) 。

你可以假设 nums1 和 nums2 不同时为空。

示例 1:

nums1 = [1, 3]
nums2 = [2]

中位数是 2.0

示例 2:

nums1 = [1, 2]
nums2 = [3, 4]

中位数是 (2 + 3)/2 = 2.5

方法:

class Solution {
public:
    double findMedianSortedArrays(vector& nums1, vector& nums2) {
        vector num;
        double mid;
        int i,j;
        for(i=0;i

思路:

本题时间复杂度未按照题目要求,所以很简单。

将两个数组接到一起,然后排序,根据两种情况找出中位数即可。注意中位数是两个数的平均数,进行除2操作时,需要使用浮点数2.0,避免将之转换成int造成误差。

你可能感兴趣的:(leetcode题库)