solution.md 3.4 KB
Newer Older
1
# 合并两个有序数组
2 3
<p>给你两个有序整数数组 <code>nums1</code><em> </em><code>nums2</code>,请你将 <code>nums2</code><em> </em>合并到 <code>nums1</code><em> </em><em></em>使 <code>nums1</code><em> </em>成为一个有序数组。</p><p>初始化 <code>nums1</code><code>nums2</code> 的元素数量分别为 <code>m</code><code>n</code><em> </em>。你可以假设 <code>nums1</code><em> </em>的空间大小等于 <code>m + n</code>,这样它就有足够的空间保存来自 <code>nums2</code> 的元素。</p><p> </p><p><strong>示例 1:</strong></p><pre><strong>输入:</strong>nums1 = [1,2,3,0,0,0], m = 3, nums2 = [2,5,6], n = 3<strong><br />输出:</strong>[1,2,2,3,5,6]</pre><p><strong>示例 2:</strong></p><pre><strong>输入:</strong>nums1 = [1], m = 1, nums2 = [], n = 0<strong><br />输出:</strong>[1]</pre><p> </p><p><strong>提示:</strong></p><ul>	<li><code>nums1.length == m + n</code></li>	<li><code>nums2.length == n</code></li>	<li><code>0 <= m, n <= 200</code></li>	<li><code>1 <= m + n <= 200</code></li>	<li><code>-10<sup>9</sup> <= nums1[i], nums2[i] <= 10<sup>9</sup></code></li></ul>
<p>以下错误的选项是?</p>
4 5 6
## aop
### before
```cpp
每日一练社区's avatar
每日一练社区 已提交
7 8
#include <bits/stdc++.h>
using namespace std;
9 10 11
```
### after
```cpp
每日一练社区's avatar
每日一练社区 已提交
12 13 14 15 16 17 18 19 20 21
int main()
{
    Solution sol;
    vector<int> nums1 = {1, 2, 3, 0, 0, 0};
    int m = 3;
    vector<int> nums2 = {2, 5, 6};
    int n = 3;
    sol.merge(nums1, m, nums2, n);
    for (auto i : nums1)
        cout << i << " ";
22

每日一练社区's avatar
每日一练社区 已提交
23 24
    return 0;
}
25 26 27 28
```

## 答案
```cpp
每日一练社区's avatar
每日一练社区 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
class Solution
{
public:
    void merge(vector<int> &nums1, int m, vector<int> &nums2, int n)
    {
        int i = m - 1;
        int j = n - 1;
        int k = m + n - 1;
        while (i > 0 && j > 0)
        {
            if (nums1[i] > nums2[j])
            {
                nums1[k--] = nums1[i--];
            }
            else
            {
                nums1[k--] = nums2[j--];
            }
        }
        return;
    }
};
51 52 53 54 55
```
## 选项

### A
```cpp
每日一练社区's avatar
每日一练社区 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
class Solution
{
public:
    void merge(vector<int> &nums1, int m, vector<int> &nums2, int n)
    {
        int sum = m + n;
        int pos = 0;
        if (n < 1)
            ;
        else
        {
            for (int i = 0; i < sum && n; i++)
            {
                if (nums2[pos] <= nums1[i] || i >= m)
                {
                    for (int k = nums1.size() - 1; k > i; k--)
                    {
                        nums1[k] = nums1[k - 1];
                    }
                    nums1[i] = nums2[pos];
                    pos++;
                    n--;
                    m++;
                }
            }
        }
    }
};
84 85 86 87
```

### B
```cpp
每日一练社区's avatar
每日一练社区 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
class Solution
{
public:
    void merge(vector<int> &nums1, int m, vector<int> &nums2, int n)
    {
        int sum = m + n;
        int k = 0;
        for (int i = m; i < sum; i++)
        {
            nums1[i] = nums2[k];
            k++;
        }
        sort(nums1.begin(), nums1.end());
    }
};
103 104 105 106
```

### C
```cpp
每日一练社区's avatar
每日一练社区 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
class Solution
{
public:
    static bool cmp(const int &a, const int &b)
    {
        return a < b;
    }
    void merge(vector<int> &nums1, int m, vector<int> &nums2, int n)
    {
        int sum = m + n;
        int k = 0;
        for (int i = m; i < sum; i++)
        {
            nums1[i] = nums2[k];
            k++;
        }
        sort(nums1.begin(), nums1.end(), cmp);
    }
};
126
```