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

C++ distance()处理迭代器之间的距离

时间:2019-12-28 21:15:36      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:turn   int   nbsp   and   c++   element   else   out   iter   

C++ distance() 处理迭代器之间的距离

#include <iterator>
#include <iostream>
#include <list>
#include <algorithm>

using namespace std;

int main()
{
    list<int> list1;
    for (int k=-3;k<=9;++k)
    {
        list1.push_back(k);
    }

    list<int>::iterator pos1;
    pos1 = find(list1.begin(),list1.end(),5);

    if (pos1 != list1.end())
    {
        cout << "difference between begining and 5:  " << distance(list1.begin(),pos1) << endl;
    }
    else
    {
        cout << "element 5 not find..." << endl;
    }

    system("pause");
    return 0;
}

difference between begining and 5: 8
请按任意键继续. . .

 

代码参考:C++标准库(第2版)

 

C++ distance()处理迭代器之间的距离

标签:turn   int   nbsp   and   c++   element   else   out   iter   

原文地址:https://www.cnblogs.com/herd/p/12112784.html

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