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

max_element 返回值上限与下限

时间:2015-03-11 18:51:20      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>

#include <algorithm>

#include <list>
using namespace std;
//using namespace std::list;
//using namespace std::cout;
//using namespace std::endl;


int main(int argc, char** argv)
{    
    typedef list<int> IntList;
    
    IntList coll;
    for(int i=20; i<40; ++i)
    {
        coll.push_back(i);        
    }
    
    list<int>::iterator pos25, pos35;
    pos25 = find(coll.begin(), coll.end(), 25);
    cout<<*pos25<<endl; // 25
    pos35 = find(coll.begin(), coll.end(), 35);
    cout<<*pos35<<endl;  // 35

        // 注意:max_element返回的值是34,而不是35.
    cout<<"max = "<< *max_element(pos25, pos35)<<endl;

    return 0;    
}

 

max_element 返回值上限与下限

标签:

原文地址:http://www.cnblogs.com/sylar-liang/p/4330531.html

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