c++ - 无法进入while循环:"Segmentation fault"

标签 c++ segmentation-fault coredump

我不知道为什么在尝试执行 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 元素时都会遇到段错误

我在互联网上阅读并发现,当我们尝试访问超出范围的位置时,我们会遇到段错误,但在我们的例子中并没有。

最佳答案

一个错误是,在不同的地方,您正试图访问 visited vector ,但没有向其中添加任何条目。

例如:

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 异常而不是一个段错误。

关于c++ - 无法进入while循环:"Segmentation fault",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59534582/

相关文章:

c++ - QT中使用Botan C++加密文件

c++ - 访问虚拟派生类的成员/方法

c - 如何在没有段错误的情况下将双指针传递给函数 C 语言

c++ - 为什么一个二维数组会导致段错误,而另一个不会?

c - 实现 malloc 时出现段错误

c - 为什么 static 关键字在这里防止段错误?

c# - 为什么我的 C++ 代码看不到这个 C# 类成员?

c++ - 类没有成员 "operator<<"

ubuntu - 如何更改非打包应用程序崩溃的默认行为?

c++ - dumping Core 时 Heap snapshot 的时间