gyro永不抽风

ああああああああああああああああおおおおおおおおおおおおおおおお

20年OI刷题(1) - 归并排序

原理

不做赘述,细看下图:

复杂度

时间复杂度:$O(n\log n)$
空间复杂度:$O(n)$

代码

(码风不好看,不喜勿碰)

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
#include <iostream>

using namespace std;

const int MAXN = 100005;

int n;
int a[MAXN], temp[MAXN];

template<typename T>
void merge_sort(T arr, T temp, int l, int r) {
if (l >= r) return;
int mid = (l + r) >> 1;
merge_sort(arr, temp, l, mid);
merge_sort(arr, temp, mid + 1, r);
int i = l, j = mid + 1, k = l;
while (i <= mid && j <= r)
temp[k ++] = arr[i] < arr[j] ? arr[i ++] : arr[j ++];
while (i <= mid)
temp[k ++] = arr[i ++];
while (j <= r)
temp[k ++] = arr[j ++];
for (register int i = l; i <= r; i ++) arr[i] = temp[i];
}

int main() {
cin >> n;
for (int i = 1; i <= n; i ++) cin >> a[i];
merge_sort(a, temp, 1, n);
for (int i = 1; i <= n; i ++) cout << a[i] << " ";
cout << endl;
return 0;
}

当然了,你也可以:

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
#include <algorithm>

using namespace std;

int main() {
cin >> n;
for (int i = 1; i <= n; i ++) cin >> a[i];
sort(a + 1, a + 1 + n);
for (int i = 1; i <= n; i ++) cout << a[i] << " ";
cout << endl;
return 0;
}

测试传送门

https://www.luogu.com.cn/problem/P1177

代码下载

Download

__EOF__
-------------本文结束感谢您的阅读-------------

本文标题:20年OI刷题(1) - 归并排序

文章作者:gyro永不抽风

发布时间:2020年09月04日 - 10:09

最后更新:2020年09月15日 - 08:09

原始链接:http://gyrojeff.moe/2020/09/04/20%E5%B9%B4OI%E5%88%B7%E9%A2%98-1-%E5%BD%92%E5%B9%B6%E6%8E%92%E5%BA%8F/

许可协议: 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 转载请保留原文链接及作者!

真的不买杯奶茶吗?T^T

欢迎关注我的其它发布渠道