首页 > 代码库 > list?容器?排序函数.xml
list?容器?排序函数.xml
<style
type="text/css">
pre{
line-height:1;
color:#f0caa6;
background-color:#2d161d;
font-size:16px;}.sysFunc{color:#e54ae9;font-style:italic;font-weight:bold;}
.selfFuc{color:#f1f9be;}
.bool{color:#69305e;}
.condition{color:#628698;font-weight:bold;}
.key{color:#e336b6;}
.var{color:#008080;font-style:italic;}
.Digit{color:#808080;font-weight:bold;}
.includePre{color:#a6caf0;}
.operator?{color:#ce0c40;font-weight:bold;}
</style>
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。