c++list的sort函数进行倒序排序
时间: 2023-11-19 07:59:29 浏览: 90
C语言List sort
可以使用sort()函数的reverse参数来进行倒序排序。示例代码如下:
```
my_list = [3, 1, 4, 1, 5, 9, 2, 6, 5]
my_list.sort(reverse=True)
print(my_list)
```
输出结果为:
```
[9, 6, 5, 5, 4, 3, 2, 1, 1]
```
阅读全文
C语言List sort