2019年11月25日
摘要: 利用分治思想实现一个棋牌覆盖的简单程序,以复习分治法的内容。 1 #include<iostream> 2 #include<cmath> 3 4 using namespace std; 5 6 #define n 4 7 int tile = 0; 8 9 int board[n][n]; 10 阅读全文
posted @ 2019-11-25 00:09 Arthurian 阅读(580) 评论(0) 推荐(0) 编辑