[伴随编程] 实现动态数组排序
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
- 我们来实现动态数组的排序,首先定义一个储存
int
类型数据的动态数组vec
。 - 我们用循环读入 n个整数,每次放入动态数组尾部。
- 调用
sort
函数对动态数组排序,第一个参数传入首元素的迭代器vec.begin()
,第二个参数传入尾后迭代器vec.end()
。
sort(vec.begin(), vec.end());
使用sort
函数要添加 algorithm
头文件。
- 最后,我们用循环输出排序好的动态数组中每一个元素。
- 点击 运行 输入下面这组数据查看效果
5 66 55 77 44 33
2024022001
- Status
- Done
- Rule
- ACM/ICPC
- Problem
- 9
- Start at
- 2024-2-20 17:00
- End at
- 2024-2-20 18:18
- Duration
- 1.3 hour(s)
- Host
- Partic.
- 12