gpt4 book ai didi

C++ 二维数组迷宫导航

转载 作者:行者123 更新时间:2023-11-28 07:07:35 26 4
gpt4 key购买 nike

我是 C++ 的新手,想知道我这样做是否是最好的方式。我需要从文本文件中读取一行并从中构建一个数组,然后对其进行导航。如果我做错了什么,请告诉我。我可以像现在这样访问矩阵吗?

标题:

#ifndef MAZE_HPP_
#define MAZE_HPP_

#include <fstream>
#include <vector>
#include <string>

class Maze
{
public:
Maze(int size);
~Maze() {}

enum Direction { DOWN, RIGHT, UP, LEFT };

// Implement the following functions:

// read maze from file, find starting location
void readFromFile(std::ifstream &f);

// make a single step advancing toward the exit
void step();

// return true if the maze exit has been reached, false otherwise
bool atExit();

// set row and col to current position of 'x'
void getCurrentPosition(int &row, int &col);

// You can add more functions if you like
private:
// Private data and methods
int size;
static string matrix[30][30];
};


#endif /* MAZE_HPP_ */

C++文件:

#include <iostream>
#include "maze.hpp"
#include "utils.hpp"
#include <vector>
#include <string>

Maze::Maze(int size) {
size = size;
}

Maze::void readFromeFile(std::ifstream &f) {
std::string line;
int i, j;
while(std::getline(f, line)) {
for(i = 0; i < line.length(); i++) {
for(j = 0; j < line.length(); j++) {
matrix[i][j] = line.at(j);
}
}
}
}

Maze::void step() {

}

Maze::bool atExit() {

}

Maze::void getCurrentPosition(int &row, int &col) {

}

最佳答案

Maze::void readFromeFile {}
Maze::void step() {}
Maze::bool atExit() {}
Maze::void getCurrentPosition(int &row, int &col) {}

这些应该是

void Maze::readFromeFile{}
void Maze::step() {}
bool Maze::atExit(){}
void Maze::getCurrentPosition(int &row, int &col){}

关于C++ 二维数组迷宫导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21540086/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com