-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP88.cpp
49 lines (47 loc) · 865 Bytes
/
P88.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <iostream>
#include <vector>
using namespace std;
class Solution
{
public:
void merge(vector<int> &nums1, int m, vector<int> &nums2, int n)
{
int i = 0, j = 0;
while (i < m && j < n)
{
if (nums1[i]<=nums2[j])
i++;
else {
int t=nums1[i];
nums1[i]=nums2[j];
int k=j;
while (k+1<n && nums2[k+1]<t) {
nums2[k]=nums2[k+1];
k++;
}
nums2[k]=t;
}
}
// for (i = 0; i < m; i++)
// cout << nums1[i] << " ";
// cout << endl;
// for (j = 0; j < n; j++)
// cout << nums2[j] << " ";
// cout << endl;
for (j = 0; j < n; j++)
nums1[m + j] = nums2[j];
return;
}
};
int main() {
vector<int> a={4,7,0,0,0,0,0};
vector<int> b={1,2,3,5,6};
int m=a.size();
int n=b.size();
Solution().merge(a,m-n,b,n);
int i;
for (i = 0; i < m; i++)
cout << a[i] << " ";
cout << endl;
return 0;
}