C ++:小输入的St9bad_alloc失败

时间:2013-08-17 11:10:00

标签: c++ list runtime-error

我构建了一个程序,用于将多图形转换为具有多个边的无向图,并使用邻接列表作为图形表示来移除自循环。 `

 #include<iostream>
 #include<istream>
 #include<algorithm>
 #include<list>
 using namespace std;

int main()
{
list<int> adj[3];
list<int> auxArray[3];
list<int> adjnew[3];
cout<<adjnew[2].back()<<endl; // Gives output 0, whereas it should have some garbage
//value

for(int i = 0;i<3;i++){
int x;
while(true){ // reading a line of integers until new line is encountered , peek() 
returns the next input character without extracting it.
cin>>x;                              
adj[i].push_back(x); 
auxArray[i].push_back(x);
if(cin.peek() == '\n') break;                                             
 }        
}

//flatten the adj-list
for(int i = 0;i<3;i++){
list<int>::iterator it = adj[i].begin();
while(it != adj[i].end()){
auxArray[*it].push_back(i);
it++;
 }
}

for(int i = 0;i<3;i++){
list<int>::iterator it = auxArray[i].begin();
while(it != auxArray[i].end()){
 //cout<<*it<<" "<<adjNew[*it].back()<<endl;
if((*it != i) && ((adjnew[*it].back()) != i)){
// cout<<*it<<" -> "<<i<<endl;
 adjnew[*it].push_back(i);         
 }
 it++;
 }
}

for(int i = 0;i<3;i++){
list<int>::iterator it = adjnew[i].begin();
while(it != adjnew[i].end()){
 cout<<*it<<" ";  
 it++;       
}
cout<<endl;
}
return 0;
}

`

但它显示 St9bad_alloc 错误,而我的列表只有3的大小。

此外,adjnew [2] .back()被分配为“0”而没有被初始化,而它应该有一些垃圾值。

Input:
1 2 1
0
1 1

Output of Program(Incorrect because of 0 as back element in adjnew[2]):
1 2
0 2
1

Correct Output:
1 2
0 2
0 1

欢迎所有建议!

1 个答案:

答案 0 :(得分:0)

cout<<adjnew[2].back()<<endl;

at begin是空容器上的明确未定义行为。

valgrind给出

Conditional jump or move depends on uninitialised value(s)

这一行:

if ((*it != i) && ((adjnew[*it].back()) != i))

在空容器上再次出现未定义的行为。

提示:您可以使用container.at()而不是operator []进行范围检查。