Median of Two Sorted Arrays

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)).

Subscribe to see which companies asked this question

  1 class Solution {
  2 public:
  3     /*
  4      * 首先的想法是用额外的一个vector保存排好序的数组,快速排序 o(nlogn)
  5      *
  6      */
  7     double _findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
  8         vector<int>::iterator it;
  9         vector<int> all_nums;
 10
 11         for (it=nums1.begin(); it!=nums1.end(); it++) {
 12             all_nums.push_back(*it);
 13         }
 14
 15         for (it=nums2.begin(); it!=nums2.end(); it++) {
 16             all_nums.push_back(*it);
 17         }
 18
 19         sort(all_nums.begin(), all_nums.end());
 20
 21         int len_all_nums = all_nums.size();
 22         if (len_all_nums % 2 == 1) {
 23             return all_nums[len_all_nums / 2];
 24         } else {
 25             double mid_left = all_nums[len_all_nums / 2 - 1];
 26             double mid_right = all_nums[len_all_nums / 2];
 27             double mid_num = (mid_left + mid_right) / 2;
 28             return mid_num;
 29         }
 30     }
 31     /*
 32      * 也可以转换为找到两个排序链表的第i个数, 不过太麻烦了
 33      * 1.
 34      * */
 35    double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
 36         int all_len = nums1.size() + nums2.size();
 37         int first_index = -1;
 38         int second_index = -1;
 39         if (all_len % 2 == 1) {
 40             first_index = all_len / 2;
 41         } else {
 42             first_index = all_len / 2 - 1;
 43             second_index = all_len / 2;
 44         }
 45         double first_num = 0;
 46         double second_num = 0;
 47         //下面就是找到对应的数
 48         int n1 = 0;
 49         int n2 = 0;
 50         int find_index = 0;
 51         for (;find_index<first_index; find_index++) {
 52             if ((n1 < nums1.size()) && (n2< nums2.size())) {
 53                 if (nums1[n1] <= nums2[n2]) {
 54                     n1++;
 55                 } else {
 56                     n2++;
 57                 }
 58             } else if(n1 < nums1.size()) {
 59                 n1++;
 60             } else {
 61                 n2++;
 62             }
 63         }
 64
 65         if (n1 == nums1.size()) {
 66             first_num = nums2[n2];
 67             if (second_index != -1) {
 68                 second_num = nums2[n2 + 1];
 69             }
 70         } else if (n2 == nums2.size()) {
 71             first_num = nums1[n1];
 72             if (second_index != -1) {
 73                 second_num = nums1[n1 + 1];
 74             }
 75         } else {
 76             /*
 77             first_num = min(nums1[n1], nums2[n2]);
 78             //second_num = max(nums1[n1], nums2[n2]);
 79             if ((n1 + 1) < nums1.size()) {
 80                 second_num = min(nums1[n1 + 1], nums2[n2]);
 81             } else {
 82                 second_num = nums2[n2];
 83             }
 84             */
 85             if (nums1[n1] <= nums2[n2]) {
 86                 first_num = nums1[n1];
 87                 if ((n1 + 1) < nums1.size()) {
 88                     second_num = min(nums1[n1 + 1], nums2[n2]);
 89                 } else {
 90                     second_num = nums2[n2];
 91                 }
 92             } else {
 93                 first_num = nums2[n2];
 94                 if ((n2 + 1) < nums2.size()) {
 95                     second_num = min(nums1[n1], nums2[n2 + 1]);
 96                 } else {
 97                     second_num = nums1[n1];
 98                 }
 99             }
100         }
101
102         if (second_index != -1) {
103             return (first_num + second_num) / 2.0;
104         } else {
105             return first_num;
106         }
107    }
108 };
时间: 2024-08-19 16:44:38

Median of Two Sorted Arrays的相关文章

LeetCode(3) || Median of Two Sorted Arrays

LeetCode(3) || Median of Two Sorted Arrays 题记 之前做了3题,感觉难度一般,没想到突然来了这道比较难的,星期六花了一天的时间才做完,可见以前基础太差了. 题目内容 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

LeetCode——Median of Two Sorted Arrays

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)). 有两个已排序的数组A和B,大小为m 和 n. 找出两数组的中位数 时间复杂度应该为 O(log (m+n)). 简单粗暴的方法就是把两个数组合并成一个数组,排序,取中位数.

第三周 leetcode 4. Median of Two Sorted Arrays (HARD)

4. Median of Two Sorted Arrays 给定两个有序的整数序列.求中位数,要求复杂度为对数级别. 通常的思路,我们二分搜索中位数,对某个序列里的某个数 我们可以在对数时间内通过二分算法求得两个序列中比它小的数,整体复杂度也是对数级别.但是代码实现较为困难. 换一个思路,我们把中位数不要当作一个数,而当作一个序列的划分.划分后,序列的左半部设为L,右半部设为R 满足max(L)<=min(R)且满足len(L)==len(R) 二分搜索这个划分即可.对于A+B的长度为奇数的情

leetcode 2.Median of Two Sorted Arrays

Median of Two Sorted Arrays Problem: 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)). 解题思路:如果是一个已排序数组,求中位数,可以直接计算.因此比较常规的想法是直接将两个有序数组合并

【题解】【数组】【Leetcode】Median of Two Sorted Arrays

Median of Two Sorted Arrays 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)). ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

周刷题第二期总结(Longest Substring Without Repeating Characters and Median of Two Sorted Arrays)

这周前面刷题倒是蛮开心,后面出了很多别的事情和问题就去忙其他的,结果又只完成了最低目标. Lonest Substring Without Repeating Characters: Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which t

LeetCode 第二题,Median of Two Sorted Arrays

题目再现 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)). 题意解析 题目意思是给两个大小为m,n的有序数组(m,n可能为0),要求找出这两个数组的中位数.并且程序的时间复杂度必须不能超过O(log(m+n)). 这道题的

[leetcode]Median of Two Sorted Arrays @ Python

原题地址:https://oj.leetcode.com/problems/median-of-two-sorted-arrays/ 题意: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)). 解题思路:这道题要求两个已经排好

[LintCode] Median of Two Sorted Arrays 两个有序数组的中位数

There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. Have you met this question in a real interview? Example Given A=[1,2,3,4,5,6] and B=[2,3,4,5], the median is 3.5. Given A=[1,2,3] and B=[4,5],

No.4 Median of Two Sorted Arrays

4. Median of Two Sorted Arrays Total Accepted: 104147 Total Submissions: 539044 Difficulty: Hard 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 shoul