2013年1月15日

利用堆栈解决迷宫问题

摘要: View Code 1 #include <iostream> 2 3 using namespace std; 4 5 const int SIZE_X=10; 6 const int SIZE_Y=10; 7 8 //data struct 9 class mPoint 10 { 11 public: 12 mPoint(int rx=0,int ry=0,bool rcan_move_to=false) 13 { 14 x=rx; 15 y=ry; 16 can_move_to=rcan_move_... 阅读全文

posted @ 2013-01-15 16:08 mymemory 阅读(397) 评论(0) 推荐(0)

导航