遍历列表以查找元素的出现。代码问题

时间:2019-05-18 22:57:00

标签: c++ iterator listiterator

有人知道这段代码有什么问题吗?我收到以下编译错误。目的是找到字符串“ p”的出现,我从Stroustrup P57中获得了这个想法。我的假设是,我可以仅增加迭代器以查找其他事件,但这是行不通的。谢谢

find.cc: In function ‘int main(int, char**)’:
find.cc:34:16: error: no match for ‘operator+’ (operand types are ‘LI {aka std::_List_const_iterator<Ent>}’ and ‘int’)
     i = find(i + 1, l.end(), e1);
#include <iostream>
#include <algorithm>
#include <list>
#include <string>

using namespace std;

struct Ent {
  string name;
  Ent(const string& name) : name(name) { }
  bool operator== (const Ent& right) const {
    return name == right.name;
  }
};

int main(int argc, char *argv[])
{
  list<Ent> l;

  for (char c = 'a'; c <= 'z'; c++) {
    Ent e(string(1, c));
    l.push_back(e);
  }

  Ent e1("p");

  typedef list<Ent>::const_iterator LI;

  LI i = find(l.begin(), l.end(), e1);

  int n = 0;
  while (i != l.end()) {
    ++n;
    i = find(i + 1, l.end(), e1);
  }

  cout << "find(" << e1.name << ") = " << n << endl;

  return 0;
}

1 个答案:

答案 0 :(得分:1)

列表迭代器是双向迭代器,但不是randomaccess迭代器。因此,它们没有operator+,只有operator++。您可以写

++i;
i = find(i , l.end(), e1);

相反。