在C++中,可以使用STL(标准模板库)中的sort函数来实现由大到小的排序。
以下是一个示例代码:
#include <iostream>
#include <algorithm>
#include <vector>
// 比较函数,用于指定排序方式
bool compare(int a, int b) {
return a > b; // 降序排序
}
int main() {
std::vector<int> nums = {5, 2, 8, 3, 1};
// 使用sort函数排序,并传入比较函数
std::sort(nums.begin(), nums.end(), compare);
// 输出排序结果
for (int num : nums) {
std::cout << num << " ";
}
return 0;
}
在上述代码中,我们通过定义一个比较函数compare
,使得sort
函数按照降序方式进行排序。在main
函数中,我们创建了一个vector
容器nums
,并将待排序的数字存入其中。然后,我们使用sort
函数对nums
进行排序,传入compare
函数作为参数。最后,我们使用循环输出排序后的结果。
输出结果将会是:8 5 3 2 1,这是按照由大到小的顺序排列的。