摘要: /* Name: NYOJ--284--坦克大战 Author: shen_渊 Date: 14/04/17 19:08 Description: 广度优先搜索+优先队列 注意清空地图 对输入地图进行了预处理,将S,R设置为# */ #include #include #include u... 阅读全文
posted @ 2017-04-14 21:25 朤尧 阅读(237) 评论(0) 推荐(0) 编辑
摘要: /* Name: NYOJ--202--红黑树 Date: 14/04/17 18:31 Description: 用结构体模拟二叉树的节点,因为左旋右旋不影响中序遍历,所以直接中序遍历 */ #include #include using namespace std; struct node{ int left,right; }Tree[15]; voi... 阅读全文
posted @ 2017-04-14 18:50 朤尧 阅读(272) 评论(0) 推荐(0) 编辑