c++實現的A* 靜態尋路算法 代碼

在此僅提供代碼,不對原理進行解釋。 如果想知道原理請自行百度,已經有很多前輩寫過了。 這裏用到了簡單的圖形庫 easyX #include<iostream> #include<math.h> #include<graphics.h> using namespace std; struct Node { Node* pre; Node* next; int x; int y; int
相關文章
相關標籤/搜索