我使用一个循环来计算一个字输入的次数,然后打印单词以及输入的次数,但是它不会打印最后一个单词,我按字母顺序排序.在打印最后一个单词之前,错误地说迭代器是不可取的.这是我的代码循环:
for (vector<string>::iterator it = v.begin() ; it != v.end(); ++it) { if (*it == *(it+1)) { count++; } else if (*it != *(it+1)) { count++; cout << *it << " ---- " << count << endl; count=0; } }
解决方法
你的代码有未定义的行为 – 假设它指向v的最后一个元素,那么你试图将*引用v.end()
if (*it != *(it+1)
STL迭代器,结束不指向最后一个元素; end()返回一个代表容器中元素结尾的迭代器.最后是最后一个元素的位置.这样的迭代器也称为过去的迭代器.
因此,begin()和end()定义包含第一个元素但不包括最后一个元素的半开范围
-------------------------------- | | | | | | | | | -------------------------------- /\ /\ begin() end()
为了你想要实现的,看看std::adjacent_find
auto it = std::adjacent_find(v.begin(),v.end()); if (it != v.end()) { count ++; } else { cout << *it << " ---- " << count << endl; }