c++list从大到小排序
时间: 2023-11-04 20:03:30 浏览: 157
在Python中,可以使用sort()函数或者sorted()函数来对一个列表进行排序。
首先,使用sort()函数对列表进行排序,该函数会直接修改原始的列表。可以设置reverse参数为True,实现从大到小的排序。代码如下:
c = [1, 4, 2, 3, 5]
c.sort(reverse=True)
print(c)
输出结果为:[5, 4, 3, 2, 1]
另外一种方法是使用sorted()函数排序,该函数会返回一个新的已排序的列表,不会修改原始的列表。同样可以设置reverse参数为True,实现从大到小的排序。代码如下:
c = [1, 4, 2, 3, 5]
new_c = sorted(c, reverse=True)
print(new_c)
输出结果为:[5, 4, 3, 2, 1]
以上两种方法都可以实现对列表c从大到小排序的目的。
阅读全文