91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++利用循環和棧實現走迷宮

發布時間:2020-10-11 18:46:34 來源:腳本之家 閱讀:208 作者:春風來不來 欄目:編程語言

本文實例為大家分享了C++利用循環和棧實現走迷宮的具體代碼,供大家參考,具體內容如下

要求:

1、將地圖的數組保存在文件中,從文件中讀取行列數

2.、動態開辟空間保存地圖

3.、運行結束后再地圖上標出具體的走法

說明:

1、文件中第一行分別放置的是地圖的行數和列數

2、其中1表示墻,即路不通,0表示路,即通路

3、程序運行結束后用2標記走過的路徑

4、當走到“死胡同”時用3標記此路為死路

5、每到一個點,按照 左 上 右 下 的順序去試探

6、沒有處理入口就是"死胡同"的極端情況

地圖文件截圖:

C++利用循環和棧實現走迷宮

代碼示例:maze.h

#ifndef _MAZE_H_ 
#define _MAZE_H_ 
 
#include <stack>  
#include <fstream> // ifstream 
#include <iostream> 
#include <string> 
using namespace std; 
 
// 坐標類 
class Seat 
{ 
public: 
 Seat(int _x, int _y) 
  :x(_x) 
  ,y(_y) 
 { } 
 int x; 
 int y; 
}; 
 
// 迷宮類 
 
class Maze 
{ 
private: 
 int** _map; // 指向地圖的指針 
 int _row; // 存放地圖的行數 
 int _col; // 存放地圖的列數 
public: 
 // 構造函數 讀取文件里的地圖 和行數 
 Maze(const string& filePath); 
 
private: 
 // 判斷是否是路 
 bool IsPass(Seat& entry); 
 
public: 
 // 開始走 
 bool PassMaze(stack<Seat>& s, Seat& entry); 
 
 // 打印地圖 
 void PrintMap(); 
 
 // 析構 釋放空間 
 ~Maze(); 
}; 
#endif 

maze.cpp

// 迷宮之遞歸實現 
#include "maze.h" 
 
// 構造函數 
Maze::Maze(const string& filePath) 
{ 
 ifstream mapFile(filePath, ofstream::out); 
 assert(mapFile); // 斷言文件是否存在 
 string str_row_col; //第一行 獲取行和列 
 string str_temp; // 臨時字符串 
 
 // 獲取行列的個數 
 getline(mapFile,str_row_col);// 讀取第一行 
 str_temp = str_row_col.substr(0, str_row_col.find_first_of(','));// 取得字符串中的字串獲取行數 
 _row = atoi(str_temp.c_str()); // atoi將字符串轉為數字 
 str_temp = str_row_col.substr(str_row_col.find_first_of(',')+1); // 取得字符串中的列數 
 _col = atoi(str_temp.c_str()); // atoi將字符串轉為數字 
 
 // 分配空間 
 _map = new int*[_row]; 
 for (int idx = 0; idx < _col; ++idx) 
 { 
  _map[idx] = new int[_col]; 
 } 
  
 
 // 填充地圖 
 int index_row = 0; // 放置地圖 二維數組的行索引 
 int index_col = 0; // 放置地圖 二維數組的列索引 
 while (!mapFile.eof()) 
 { 
  getline(mapFile, str_temp); 
  char* a_line = (char*)str_temp.c_str(); 
  // 遍歷一行 
  while (*a_line != '\0') 
  { 
   if (*a_line == '0' || *a_line == '1') 
   { 
    _map[index_row][index_col++] = *a_line - '0'; // 減0 是將字符'0'的 ASCII對應的十進制值減去 
   } 
   a_line++; // 向后移動指針 
  } 
  ++index_row; 
  index_col = 0; // 每處理完一行后將列索引置0 
 } 
 mapFile.close(); 
} 
 
 // 判斷是否是路 
bool Maze::IsPass(Seat& entry) 
{ 
 if (entry.x < 0 || entry.y < 0 || entry.y >= _col || entry.x >= _row) 
 { 
  return true; 
 } 
 if (_map[entry.x][entry.y] == 0) 
 { 
  return true; 
 } 
 return false; 
} 
 
 
// 開始走 
void Maze::PassMaze( Seat& entry) 
{ 
 stack<Seat> s; 
 if (IsPass(entry)) 
 { 
  s.push(entry); // 壓棧當前位置 
  while (!s.empty()) // 棧不為空繼續 
  { 
   Seat curSeat = s.top(); // 取得棧頂存儲的位置 
   // 走到邊界 
   if (curSeat.x < 0 || curSeat.y < 0 || entry.y >= _col || entry.x >= _row ) 
   { 
    return; 
   } 
   _map[curSeat.x][curSeat.y] = 2; // 將走過的路標記為2 
 
   // 往左走 
   Seat left(curSeat.x, curSeat.y-1); 
   if (IsPass(left)) 
   { 
    s.push(left); 
    continue; 
   } 
   // 往上走 
   Seat up(curSeat.x-1, curSeat.y); 
   if (IsPass(up)) 
   { 
    s.push(up); 
    continue; 
   } 
   // 往右走 
   Seat right(curSeat.x, curSeat.y+1); 
   if (IsPass(right)) 
   { 
    s.push(right); 
    continue; 
   } 
   // 往下走 
   Seat down(curSeat.x+1, curSeat.y); 
   if (IsPass(down)) 
   { 
    s.push(down); 
    continue; 
   } 
 
   // 運行到此處說明 每個方向都沒有路可走 是死路標記為3 
   _map[curSeat.x][curSeat.y] = 3; 
   // 出棧這個“死路位置” 
   s.pop(); 
  } 
 } 
} 
 
// 打印地圖 
void Maze::PrintMap() 
{ 
 for (int index_row = 0; index_row < _row; ++index_row) 
 { 
  for (int index_col = 0; index_col < _col; ++index_col) 
  { 
   cout << _map[index_row][index_col] <<" "; 
  } 
  cout <<endl; 
 } 
 cout <<endl; 
} 
 
// 析構 
Maze::~Maze() 
{ 
 for (int idx = 0; idx < _row; ++idx ) 
 { 
  delete[] _map[idx]; 
 } 
 delete[] _map; 
 _map = NULL; 
} 

test.cpp
[cpp] view plain copy
int main() 
{ 
 Maze m1("map.txt"); // 構造一個迷宮對象 
 m1.PrintMap(); // 走之前打印 
 m1.PassMaze(Seat(9, 4)); //開始走 傳遞迷宮入口點 
 m1.PrintMap(); // 結束后再次打印 
 return 0; 
} 

截圖:

C++利用循環和棧實現走迷宮

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

砀山县| 台中县| 讷河市| 崇义县| 岚皋县| 壶关县| 开阳县| 怀柔区| 凤山县| 馆陶县| 潍坊市| 渝中区| 淮安市| 新干县| 博白县| 石首市| 贵港市| 西华县| 龙州县| 沂水县| 如东县| 云和县| 天峻县| 红原县| 茂名市| 友谊县| 和田市| 贵阳市| 连江县| 都安| 韶关市| 湾仔区| 新野县| 古交市| 六盘水市| 东阳市| 新蔡县| 密山市| 樟树市| 武功县| 荥阳市|