迷宮最短路徑的C++實現(隊列:廣度優先)

#include<iostream> #include<queue> #include<string> using namespace std; struct point{ int x; int y; point *last;//上一步的座標 }; int main(){ while(1){ int row, col, i, j; cout<<"請輸入迷宮圖的行數和列數:"; cin>>row>>
相關文章
相關標籤/搜索