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

C++11 STL容器 排序

时间:2014-12-27 12:40:32      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

 1     struct temp{ int __iValue; int __iKey; };
 2     temp __Stru1 = { 100,100};
 3     temp __Stru2 = { 2,-10 };
 4     temp __Stru3 = { 200,1 };
 5     temp __Stru4 = { 600,2 };
 6     
 7        std::list<temp*> test_list;
 8     test_list.push_back(&__Stru1);
 9     test_list.push_back(&__Stru2);
10     test_list.push_back(&__Stru3);
11     test_list.push_back(&__Stru4);
12     test_list.sort([](std::list<temp*>::value_type& item,std::list<temp*>::value_type& item2 )->bool{ return item->__iKey > item2->__iKey; } );
13     
14     std::for_each(test_list.begin(), test_list.end(), [](std::list<temp*>::value_type& item)
15                   {
16                       std::cout << item->__iValue << std::endl;
17                   });

 

C++11 STL容器 排序

标签:

原文地址:http://www.cnblogs.com/VindyLeong/p/4188202.html

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