码迷,mamicode.com
首页 > 其他好文 > 详细

基础-Sort函数

时间:2015-07-10 02:11:18      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

Sort elements in range
Sorts the elements in the range [first,last) into ascending order.

The elements are compared using operator< for the first version, and comp for the second.

Equivalent elements are not guaranteed to keep their original relative order (see stable_sort).

 技术分享
调用sort,引用头文件:#include <algorithm>
调用less(从小到大),greater(从大到小),引用头文件:#include <functional>
同时对于char等类型排序也是可以的。




基础-Sort函数

标签:

原文地址:http://www.cnblogs.com/ArronXing/p/4634597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!