c++ sort库函数是什么
时间: 2023-12-28 13:04:05 浏览: 93
C++常用库函数 缓冲区操作函数、字符分类函数、数据转换函数、数学函数、输入和输出函数、进程控制函数、字符串操作函数
5星 · 资源好评率100%
c++的sort库函数是用于对容器中的元素进行排序的函数。它属于C++标准库中的<algorithm>头文件,并提供了多种排序算法,如快速排序、归并排序等。sort函数可以对数组、向量、列表等容器进行排序,并且可以根据需要自定义排序规则。
以下是sort函数的基本用法示例:
```cpp
#include <algorithm>
#include <vector>
#include <iostream>
int main() {
std::vector<int> nums = {5, 2, 8, 1, 9};
// 使用sort函数对向量进行升序排序
std::sort(nums.begin(), nums.end());
// 输出排序后的结果
for (int num : nums) {
std::cout << num << " ";
}
std::cout << std::endl;
return 0;
}
```
输出结果为:1 2 5 8 9
阅读全文