我不明白我一直在测试的这个非常简单的列表的问题在哪里。这个想法是在列表中的位置 i 处获取项目。我知道通常我不会使用列表来做到这一点。但是,当我设置item = 11
,item = 12
和item = 13
( 输出将分别为at position {1, 2, 3} there's the item {11, 12, 13}
) 时有效,但是当我设置 时它不起作用,item = 10
因为输出是at position 0 there's the item 6
int main(void)
{
list<int> L;
L.push_back(10);
L.push_back(11);
L.push_back(12);
L.push_back(13);
int item = 10;
int pos;
list<int>::iterator it = moveToItem(item, L, pos);
cout << "at position " << pos << " there's the item " << *it;
}
list<int>::iterator moveToItem(int item, list<int> L, int& pos)
{
pos = 0;
list<int>::iterator it = L.begin();
while(*it != item)
{
it++;
pos++;
}
return it;
}