力扣第4题,寻找两个正序数组的中位数
题目描述:
给定两个大小分别为 m 和 n 的正序(从小到大)数组 nums1 和 nums2。请你找出并返回这两个正序数组的 中位数 。
算法的时间复杂度应该为 O(log (m+n)) 。
示例 1:
输入:nums1 = [1,3], nums2 = [2]
输出:2.00000
解释:合并数组 = [1,2,3] ,中位数 2
示例 2:
输入:nums1 = [1,2], nums2 = [3,4]
输出:2.50000
解释:合并数组 = [1,2,3,4] ,中位数 (2> + 3) / 2 = 2.5
提示:
- nums1.length == m
- nums2.length == n
- 0 <= m <= 1000
- 0 <= n <= 1000
- 1 <= m + n <= 2000
- 106 <= nums1[i], nums2[i] <= 106
C语言代码实现:
double findMedianSortedArrays(int* nums1, int nums1Size, int* nums2, int nums2Size){
int index1 = 0;
int index2 = 0;
int v[nums1Size + nums2Size];
int v_index = 0;
while (index1 < nums1Size && index2 < nums2Size)
{
if (nums1[index1] <= nums2[index2])
{
v[v_index++] = nums1[index1++];
}
else
{
v[v_index++] = nums2[index2++];
}
}
if (index1 < nums1Size)
{
while (index1 < nums1Size)
{
v[v_index++] = nums1[index1++];
}
}
if (index2 < nums2Size)
{
while (index2 < nums2Size)
{
v[v_index++] = nums2[index2++];
}
}
if (v_index == 1)
{
return v[0];
}
if (v_index % 2 == 0)
{
double n1, n2;
n1 = v[v_index / 2];
n2 = v[(v_index / 2) - 1];
return (n1 + n2) / 2;
}
int new_index = (int)v_index / 2;
int i = 0;
return v[new_index];
}
运行结果:

该博客讨论了力扣第4题,即如何在O(log(m+n))的时间复杂度内找到两个正序数组的中位数。作者提供了一个C语言的解决方案,通过合并数组并排序,最终确定中位数。示例展示了算法在不同情况下的应用,并保证了在限制条件下的正确性。

347

被折叠的 条评论
为什么被折叠?



