- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做一个uva问题uva 10935 throwing cards away ,我的代码如下。当我运行它时,它说引发了未处理的异常:读取访问冲突,并且还显示“无法在开始之前寻找 vector 迭代器”,我不知道我的代码中的问题出在哪里:
#include<vector>
#include<iostream>
using namespace std;
int n;
vector<int> out;
int main() {
freopen("data.txt", "r", stdin);
while (scanf("%d", &n) == 1 && n) {
vector<int> cards;
for (int i = 1; i <= n; i++)cards.push_back(i);
vector<int>::iterator it = cards.begin();
vector<int>::iterator end = cards.end();
while (it != (end-1)) {
out.push_back(*it);
it++;
cards.push_back(*it);
it++;
end++;
}
cout << "Discarded cards: ";
for (int j = 0; j < out.size(); j++) {
if(j!=(out.size()-1))cout << out[j] << ", ";
else cout << out[j] << endl;
}
cout << "Remaining card: " << *it << endl;
}
return 0;
}
最佳答案
这里的问题仍然存在于 while() 循环中,您在 vector 中推送新元素,同时保留旧的“结束”地址作为终端引用。
当 vector 推送新元素时,它可能需要将整个数组重新分配到新位置。在这种情况下,当您线性增加它时,您所持有的“end”引用将变得过时,但是插入之后的整个 vector 可能已经转移到其他地方了。
我在您的代码中添加了一些调试行,以便您可以看到这是如何发生的。 只需运行输入值为 4 的代码。你会看到“结束”值可能不再与 vector 的重新分配地址相关(如果发生重新分配,它基本上取决于系统来决定)。
#include<vector>
#include<iostream>
using namespace std;
int n;
vector<int> out;
void printVectorElementAddresses(vector<int> &v){
cout<<"==== Vector Element Addresses ====\n";
for(auto itr = v.begin(); itr != v.end(); itr++)
{
cout<<&(*itr);
if(itr == v.end()-1){
cout<<endl;
}
else{
cout<<" ";
}
}
cout<<endl;
}
void printIteratorAddressWithTag(char* tag, vector<int> :: iterator & it, bool printNewLine){
cout<<tag<<&*it<<"; ";
if(printNewLine){
cout<<endl;
}
}
int main() {
// freopen("data.txt", "r", stdin);
while (scanf("%d", &n) == 1 && n) {
vector<int> cards;
for (int i = 1; i <= n; i++)cards.push_back(i);
vector<int>::iterator it = cards.begin();
vector<int>::iterator end = cards.end();
//print vector addresses after initial pushes are done
printVectorElementAddresses(cards);
while (it != (end-1)) {
printIteratorAddressWithTag("it initial = ", it, false);
out.push_back(*it);
it++;
printIteratorAddressWithTag("it after first increment = ", it, false);
cards.push_back(*it);
it++;
printIteratorAddressWithTag("it after second increment = ", it, true);
printIteratorAddressWithTag("end initially in loop = ", end, false);
end++;
printIteratorAddressWithTag("end after increment = ", end, true);
cout<<"Vector Addresses after a new push"<<endl;
printVectorElementAddresses(cards);
}
cout << "Discarded cards: ";
for (int j = 0; j < out.size(); j++) {
if(j!=(out.size()-1))cout << out[j] << ", ";
else cout << out[j] << endl;
}
cout << "Remaining card: " << *it << endl;
}
return 0;
}
只需更改 while 循环中的逻辑即可在推送发生后跟踪旧的“结束”引用。如果其他逻辑没问题,它应该可以工作。
关于C++ :cannot seek vector iterator before begin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60123957/
我想处理 vector 中的元素一段时间。为了优化这一点,我不想在处理项目时删除它,而是在最后删除所有已处理的项目。 vector::iterator it; for(it = items.begin
我对 perl 中的 const 声明有疑问,并且无法弄清楚差异,请指出有什么不同。 下面是代码: BEGIN { *SIZE = sub() { 2 }; } *ITEM = sub() {
在右值上调用std::vector 和std::begin() 的成员函数.begin() 会导致不同的输出, 如以下测试所示: vector a{ 1, 2, 3 }; vector::iterat
我正在尝试创建自己的 vector 类。目前,我正在为我的 vector 类 Vec 添加一个删除函数。当我将 variable.begin() 传递到 erase 函数参数时,我的代码会报错,但在我
在 c++ 中迭代 vector 时,我注意到标准库中有一个 begin() 函数,还有一个 begin() 作为成员函数vector 类。如果有的话,两者之间有什么区别,应该使用哪个而不是另一个?
为什么标准将 end() 定义为末尾,而不是实际末尾? 最佳答案 最好的论据是Dijkstra himself 提出的论据。 : 您希望范围的大小是一个简单的差异end - begin; 当序列退化为
我正在尝试遍历大量记录并处理它们中的每一个。即使在处理过程中发生错误,游标也应该继续循环遍历记录,但在批处理结束时,我希望看到所有产生错误的记录的错误消息。 我有以下代码: 选择.... OP
这个问题在这里已经有了答案: error: no matching function for call to 'begin(int*&)' c++ (3 个答案) 关闭 6 年前。 我想获取数组的长
如果我有 std::vector(它是一个 std::vector 并且永远是一个 std::vector)。 使用 std::begin() 代替 std::vector::begin()(或相反)
这个问题在这里已经有了答案: Why use non-member begin and end functions in C++11? (7 个答案) 关闭 4 年前。 在这个问题(https://
我一直在尝试在网络上查找有关这些陈述之间差异的信息,在我看来它们是相同的,但我找不到对此的确认或两者之间的任何类型的比较。 这样做有什么区别: BEGIN -- Some update, in
我正在使用 Tiled Map 学习 LibGDX。我遇到了以下两种渲染方法。第一个是我通常使用的简单的。 但是,我不明白为什么我们需要第二个。我可以使用 batch.begin();在方法 2 中也
是否可以在 SpriteBatch begin 和 end 调用之间使用 ShapeRenderer 绘制形状。 我已经尝试过但没有结果,只绘制了 SpriteBatch 纹理,场景中没有任何形状。示
嗨,我正在编写一个程序,该程序从 .pem 文件导入私钥并创建一个私钥对象以供稍后使用。我遇到的问题是一些 pem 文件头以 开头 -----BEGIN PRIVATE KEY----- 而其他人则以
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 9年前关闭。 Improve this q
观看 Stephan T. Lavavej:核心 C++ #1,并注意到他使用的是 begin(collection) 而不是 collection.begin()。 有什么优势? 最佳答案 我想到的
Python脚本 ''' a ''' from __future__ import print_function 运行良好(即什么都不做),但是 ''' a ''' ''' b ''' from __
如何在两种风格的公钥格式之间进行转换, 一种格式是: -----BEGIN PUBLIC KEY----- ... -----END PUBLIC KEY----- 另一种格式是: -----BEGI
我是 STL c++ 的新手。我从书中复制了这个函数: string ConverToLowerCase(string s) { transform(s.begin(), s.end(),
给定代码: #include #include #include #include using namespace std; int main() { string s("ABCDE
我是一名优秀的程序员,十分优秀!