#G. [伴随编程] 实现动态数组排序

    Type: Default 1000ms 256MiB

[伴随编程] 实现动态数组排序

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.

  1. 我们来实现动态数组的排序,首先定义一个储存int类型数据的动态数组vec
  2. 我们用循环读入 n个整数,每次放入动态数组尾部。
  3. 调用sort函数对动态数组排序,第一个参数传入首元素的迭代器vec.begin(),第二个参数传入尾后迭代器vec.end()

sort(vec.begin(), vec.end());

使用sort 函数要添加 algorithm 头文件。

  1. 最后,我们用循环输出排序好的动态数组中每一个元素。
  2. 点击 运行 输入下面这组数据查看效果
    5
    66
    55
    77
    44
    33
    

2024022001

Not Attended
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