1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/寻找两个正序数组的中位数 [median-of-two-sorted-arrays].html
2022-03-29 12:43:11 +08:00

37 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给定两个大小分别为 <code>m</code><code>n</code> 的正序(从小到大)数组&nbsp;<code>nums1</code>&nbsp;<code>nums2</code>。请你找出并返回这两个正序数组的 <strong>中位数</strong></p>
<p>算法的时间复杂度应该为 <code>O(log (m+n))</code></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>nums1 = [1,3], nums2 = [2]
<strong>输出:</strong>2.00000
<strong>解释:</strong>合并数组 = [1,2,3] ,中位数 2
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>nums1 = [1,2], nums2 = [3,4]
<strong>输出:</strong>2.50000
<strong>解释:</strong>合并数组 = [1,2,3,4] ,中位数 (2 + 3) / 2 = 2.5
</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>nums1.length == m</code></li>
<li><code>nums2.length == n</code></li>
<li><code>0 &lt;= m &lt;= 1000</code></li>
<li><code>0 &lt;= n &lt;= 1000</code></li>
<li><code>1 &lt;= m + n &lt;= 2000</code></li>
<li><code>-10<sup>6</sup> &lt;= nums1[i], nums2[i] &lt;= 10<sup>6</sup></code></li>
</ul>