在C++中,sort函数用于对容器中的元素进行排序。它可以对数组、向量、列表等容器中的元素进行排序,可以自定义比较函数来指定排序规则。
sort函数的基本用法如下:
#include#include int main() { std::vector vec = {5, 2, 8, 1, 3}; // 默认升序排序 std::sort(vec.begin(), vec.end()); // 自定义比较函数,降序排序 std::sort(vec.begin(), vec.end(), std::greater ()); return 0; }
在上面的示例中,我们首先包含