摘要: 主函数没有代码!!! 1 #include 2 #include 3 using namespace std; 4 5 struct MyNode{ 6 int data; 7 MyNode *pNext; 8 }; 9 struct _Hash_Table{ 10 MyNode *value[10]; 11 }; 12 _Hash_Table ... 阅读全文
posted @ 2018-04-08 22:54 ♚奋斗的小丑 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 using namespace std; 4 5 #define MAP_ROW 6 6 #define MAP_COL 8 //定义寻路地图的大小,可以修改,自定义 7 8 enum PathDir{//地图点的方向 9 p_up, p_down, p_left, p_right 10 };... 阅读全文
posted @ 2018-04-08 21:19 ♚奋斗的小丑 阅读(502) 评论(0) 推荐(0) 编辑