码迷,mamicode.com
首页 > 编程语言 > 详细

list?容器?排序函数.xml

时间:2014-10-17 21:51:00      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   io   os   ar   使用   sp   on   

struct?Point
{
?double?x,y,z;
};
?
?

制定排序规则,重载()运算符:

?

(一)?按x值的大小?进行升序排序

?
class?ascend_x
{
public:
?bool?operator()(const?Point?&t1,Point?&t2)
?{return?t1.x<t2.x;}
};
?
?
?

(二)?按y值的大小?进行升序排序

class?ascend_y
{
public:
?bool?operator()(const?tag_Point?&t1,tag_Point?&t2)
?{return?t1.y<t2.y;}
};
?
?
list<Point>?list_point;
?
list_point.push_back(point);
....
....
?
?

对list_point中的元素按x进行升序排序

?
?
list_point.sort(ascend_x())??//??里面参数为ascend_x()
?

这样?list_point中的元素?就按指定的排序规则进行排序了

?

本文使用?书画小说软件?发布,内容与软件无关,书画小说软件?更惬意的读、更舒心的写、更轻松的发布。

list?容器?排序函数.xml

标签:style   http   color   io   os   ar   使用   sp   on   

原文地址:http://www.cnblogs.com/shuilan0066/p/4031961.html

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