c++程序,将vector中的数据复制到数组中,程序报错

#include<iostream>#include<vector>usingnamespacestd;intmain(){vector<int>a;intb;while... #include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<int> a;
int b;
while(cin >>b)
{
a.push_back(b);
}
int *str = new int[a.size()];
int *tp = str;
vector<int> ::iterator c;
for ( c = a.begin() ; c != a.end() ; ++c,++str)
{
*tp = *c;
}
for (int d =0 ; d != a.size() ; ++d)
{
cout <<*(tp +d) <<endl;
}
delete [] str;
return 0;
}

//我删掉delete[]str后可以正常运行,请问这是什么情况
展开
 我来答
adoqq_bd
2012-09-04 · TA获得超过7050个赞
知道大有可为答主
回答量:1818
采纳率:63%
帮助的人:1611万
展开全部
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<int> a;
int b;
while(cin >>b)
{
a.push_back(b);
}
int *str = new int[a.size()];
int *tp = str;
vector<int> ::iterator c;
for ( c = a.begin() ; c != a.end() ; ++c,++str)
{
*str = *c; //这里是*str=*c
}
for (int d =0 ; d != a.size() ; ++d)
{
cout <<*(tp +d) <<endl;
}
delete [] tp; //因为str已经改变,所以用delete[] tp来释放内存
return 0;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
御含灵9r
2012-09-04 · TA获得超过4157个赞
知道大有可为答主
回答量:3007
采纳率:0%
帮助的人:2674万
展开全部
for ( c = a.begin() ; c != a.end() ; ++c,++str)
{
*tp = *c;
}
这个循环里面你自加了str,所以你最后释放str失败了,因为str的值已经改变了
按照你的程序应该修改为
for ( c = a.begin() ; c != a.end() ; ++c,++tp)//str改为tp
{
*tp = *c;
}
tp=str;//给tp重新赋值,不然下面不对
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式