我有一个代码:
it = tableAndHand.begin();
while(++it != tableAndHand.end()) {
if(*it == *(--it)) {
++cardCount;
++it;
} else {
cardCounts1.insert(pair<int,int>(cardCount,*it));
while(cardCount > 1) {
it = tableAndHand.erase(--it);
--cardCount;
}
++it;
}
}
cardCounts1.insert(pair<int,int>(cardCount,*(--it)));
while(cardCount > 1) {
it = tableAndHand.erase(--it);
--cardCount;
}
tableAndHand 在开始时是 7 个值的列表,在删除一些值后,我在那个有问题的地方得到了分段错误,为什么会这样?
列表中的值已排序,它在列表 {0, 0, 0, 1, 1, 1, 2} 某处迭代 1 时失败(在正确擦除 2 0 之后,因此列表的大小已经是 5 )。
我只想将唯一值的计数保存到地图 cardCounts1 中并从列表中删除重复的值,我的算法有什么问题?
编辑:看起来问题是 (*it == *(--it)) 没有从左到右进行评估,尽管我在 cplusplus.com 和一些关于运营商的文章中找不到“==”的评估他们说其他网站是从左到右评估的。关于它的一些好的链接?
EDIT2:好的,它可以工作,我忘记将 tableAndHand.erase(--it) 迭代器分配给它,现在它可以完美快速地工作:)