我不知道为什么在尝试while(mapArray [currX] [currY]!='t')时出现分段错误 在我可以运行的范围内,一切正常。
#include<iostream
#include<vector>
#include<queue>
using namespace std;
struct array{
private:
char mapArray[10][10];
char tempChar;
queue<int> xComponent;
queue<int> yComponent;
vector<vector<char>> visited;
vector<char> answer;
int xtarget=1+rand() % 10;
int ytarget=1+rand() % 10;
void inputMap();
void moveRight(int xC,int yC);
void moveDown(int xC,int yC);
void moveLeft(int xC,int yC);
void moveUp(int xC,int yC);
void move();
bool isOk(int xC,int yC);
void showPath();
public:
void run();
};
void array::moveRight(int xC,int yC){
xComponent.push(xC);
yComponent.push(yC);
}
void array::moveDown(int xC,int yC){
xComponent.push(xC);
yComponent.push(yC);
}
void array::moveLeft(int xC,int yC){
xComponent.push(xC);
yComponent.push(yC);
}
void array::moveUp(int xC,int yC){
xComponent.push(xC);
yComponent.push(yC);
}
bool array::isOk(int xC,int yC){
return ((visited[xC][yC]!='v') && (mapArray[xC][yC]!='t'));
if(visited[xC][yC]=='v')
return false;
else
if(mapArray[xC][xC]=='x')
return false;
else
return true;
}
void array::inputMap(){
cout<<"Values of map"<<endl;
//Using random numbers
/*
for(int i=0;i<10;i++){
for(int j=0;j<10;j++){
cout<<"Input value for i:"<<i<<" j:"<<j<<endl;
cin>>mapArray[i][j];
}
}
*/
for(int i=0;i<10;i++){
for(int j=0;j<10;j++){
int t=rand() % 9;
char chA='0' + t;
//cout<<"T:"<<t<<endl;
//cout<<"CHA:"<<chA<<endl;
mapArray[i][j]=chA;
if(i==xtarget&&j==ytarget){
mapArray[i][j]='t';
}
cout<<"i:"<<i<<" j:"<<j<<" "<<mapArray[i][j]<<endl;;
}
}
}
void array::move(){
int currX=0,currY=0;
xComponent.push(0);
yComponent.push(0);
cout<<"Debugging move point 1"<<endl;
cout<<"Debugging move point 2"<<endl;
while(mapArray[currX][currY]!='t'){
cout<<"Debugging while:"<<currX+1<<" ";
if((isOk(currX+1,currY) && (currX+1!=10) && (visited[currX+1][currY]!='v')))
moveRight(currX+1,currY);
if((isOk(currX,currY+1) && (currY+1!=10) && (visited[currX+1][currY]!='v')))
moveDown(currX,currY+1);
if((isOk(currX-1,currY) && (currX-1!=-1) && (visited[currX-1][currY]!='v')))
moveLeft(currX-1,currY);
if((isOk(currX,currY-1) && (currY-1!=-1) && (visited[currX][currY-1]!='v')))
moveUp(currX,currY-1);
if( (!xComponent.empty()) && (!yComponent.empty()) ){
currX=xComponent.front();
currY=yComponent.front();
xComponent.pop();
yComponent.pop();
visited[currX][currY]='v';
tempChar=mapArray[currX][currY];
answer.push_back(tempChar);
}
}
cout<<"Debugging move point 3"<<endl;
/*
xComponent.push(currX);
yComponent.push(currY);
visited[currX][currY]='v';
tempChar=mapArray[currX][currY];
answer.push_back(tempChar);
*/
}
void array::run(){
cout<<"Inside run()"<<endl;
cout<<"Target Block x:"<<xtarget<<" y:"<<ytarget<<endl;
inputMap();
cout<<"inputMap() done"<<endl;
move();
cout<<"move() done"<<endl;
showPath();
cout<<"showPath() done"<<endl;
}
void array::showPath(){
cout<<"Answer:";
for(int i=0;i<answer.size();i++){
cout<<answer[i]<<" ";
}
}
int main(){
cout<<"Hello World"<<endl;
array A;
A.run();
return 0;
}
我试图在数组上执行bfs,但是每次尝试访问mapArray的0,0元素时都会遇到分段错误
我在互联网上阅读后发现,当我们尝试访问超出范围的位置时,会遇到分割错误,但在我们的情况下不是。
答案 0 :(得分:2)
一个错误是,您在各个地方都试图访问visited
向量,但是没有添加任何条目。
例如:
bool array::isOk(int xC, int yC) {
return ((visited[xC][yC] != 'v') && (mapArray[xC][yC] != 't')); // <-- out-of-bounds access
//…
由于visited
没有条目,并且您正在尝试访问其中的元素,因此将导致越界访问。
要确认这一点,请将上面的代码行更改为:
bool array::isOk(int xC, int yC) {
return ((visited.at(xC).at(yC) != 'v') && (mapArray[xC][yC] != 't'));
您应该获得std::out_of_range
异常,而不是分段错误。
答案 1 :(得分:0)
首先不要给类命名标准库使用的名称。命名类“数组”加上声明std
命名空间会使您的类与std::array
相撞。 (这就是using namespace std
是个坏主意的原因)
成员变量vector<vector<char>> visited;
为空,但在各处使用。您需要将其初始化为矢量的10 x 10矢量。
除此之外,if((isOk(currX-1,currY) && (currX-1!=-1) && (visited[currX-1][currY]!='v')))
之类的所有行都需要在访问发生之前防止边界数组访问,即isOkay(...)
访问visited
;如果currX为零,则在-1上调用isVisited的方式。