-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlc912.cpp
45 lines (43 loc) · 1.27 KB
/
lc912.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
#include <iostream>
#include <vector>
class Solution {
public:
void function(int a, int b, std::vector<int>& nums,
std::vector<int>& temp) {
if (b - a > 1) {
int m = a + (b - a) / 2;
function(a, m, nums, temp);
function(m, b, nums, temp);
int i = a;
int j = m;
int count = i;
while (i < m && j < b) {
if (temp[i] < temp[j])
nums[count++] = temp[i++];
else
nums[count++] = temp[j++];
}
while (i < m) nums[count++] = temp[i++];
while (j < b) nums[count++] = temp[j++];
for (int k = a; k < b; k++) temp[k] = nums[k];
}
}
std::vector<int> sortArray(std::vector<int>& nums) {
std::vector<int> temp = nums;
int n = nums.size();
function(0, n, nums, temp);
return nums;
}
};
int main() {
std::vector<int> nums = {5, 1, 1, 2, 0, 0};
// std::vector<int>& nums2 = nums; //
// nums2和nums是同个东西。引用实现了指针的功能
std::vector<int> ans;
Solution solution;
solution.sortArray(nums);
for (int i = 0; i < nums.size(); i++) {
std::cout << nums[i];
}
return 0;
}