题目链接:http://poj.org/problem?id=2676数独问题。用dancing links解决。建图参考http://wenku.baidu.com/link?url=3Tk5gVYew3mSQ2f2LxDODxPg3v-yqJPUaEkuZpfkHTxfSPQuM_n8TGl2S...
分类:
其他好文 时间:
2015-04-23 23:18:15
阅读次数:
266
#include#include#include#includeusing namespace std;const int M = 100005;const int N = 16;struct DLX{ int D[M], U[M], R[M], L[M], head[5000], S[500...
分类:
其他好文 时间:
2015-04-23 23:13:56
阅读次数:
208
这是我在刚刚学习Android时自己做的一个小游戏,彩色双重数独。现在看看,布局弱到爆,性能不忍直视,注释都不全。。。咳咳但是当时还是很用心做的但是第一个小游戏在应用宝上有超过10万的下载还是很开心的当时。今天就来给大家看看大神请无视,笑话的默默的笑话下就好话不多说..
分类:
其他好文 时间:
2015-04-18 14:40:07
阅读次数:
135
这是我在刚刚学习Android时自己做的一个小游戏,彩色双重数独。现在看看,布局弱到爆,性能不忍直视,注释都不全。。。咳咳 但是当时还是很用心做的但是第一个小游戏在应用宝上有超过10万的下载 还是很开心的当时。今天就来给大家看看 大神请无视,笑话的默默的笑话下就好话不多说 ,上图先?源码地址: ht...
分类:
其他好文 时间:
2015-04-18 14:17:06
阅读次数:
128
Dancing Link详解:http://www.cnblogs.com/grenet/p/3145800.htmlDancing Link求解数独:http://www.cnblogs.com/grenet/p/3163550.html对于求解9*9的数独,貌似Dancing Linking算法...
分类:
其他好文 时间:
2015-04-16 23:26:24
阅读次数:
181
/*给一个不完整的数独,'.'代表为空判断数独是否合法*/public class Solution { public boolean check1(char[][] board){ for(int i = 0 ; i < 9 ; i ++){ int[] ...
分类:
其他好文 时间:
2015-04-14 16:13:00
阅读次数:
108
Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character'.'.You may assume that there will be on...
分类:
其他好文 时间:
2015-04-13 14:10:41
阅读次数:
113
Determine if a Sudoku is valid, according to:Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are filled with ...
分类:
其他好文 时间:
2015-04-13 08:13:12
阅读次数:
187
经过几天的下班空闲时间写了一个android上的数独游戏,今天也申请了几个发布平台的账号,发布出去了,google play要收25刀,而且这个在大陆基本访问不上,所以暂时就没买。在移动平台写应用程序还蛮好玩的,感觉想要写个简单的应用简单,但是要用优雅的代码写出有趣的应用还是很难的。我最近有个新的点...
分类:
移动开发 时间:
2015-04-11 23:45:12
阅读次数:
241