c++中sort函数在那个库
时间: 2023-11-19 07:41:11 浏览: 133
C++标准模板库函数sort的那些事儿
sort函数在C++中位于<algorithm>标准库中。要使用sort函数,您需要包含<algorithm>头文件,并使用std命名空间。下面是一个使用sort函数对一个整数数组进行排序的示例代码:
```cpp
#include <algorithm>
#include <iostream>
#include <vector>
int main() {
std::vector<int> numbers{5, 2, 8, 1, 9};
std::sort(numbers.begin(), numbers.end());
for (const auto& num : numbers) {
std::cout << num << " ";
}
return 0;
}
```
运行此代码将输出已排序的整数数组:1 2 5 8 9。
阅读全文