经典数独问题
用DFS模拟数独解法,找摒除解和余数解
数独解法:http://www.sudokufans.org.cn/forums/topic/8/
2676
#include "stdio.h"
#include "string.h"
struct node
{
int x,y;
int s[10]; // 对于每个空格,数字i是否可用
int su...
分类:
其他好文 时间:
2015-05-19 21:01:27
阅读次数:
106
go语言目前已可以用来开发android和ios手机app。相关资料:1、IOShttps://groups.google.com/forum/?utm_medium=email&utm_source=footer#!topic/golang-china/zEh_pdSLHDs需要能访问google...
分类:
移动开发 时间:
2015-05-18 22:43:35
阅读次数:
266
写这篇文章并不是教大家怎么样用listview异步加载图片,因为这样的文章在网上已经有很多了,比如这位仁兄写的就很好:http://www.iteye.com/topic/685986我也是因为看了这篇文章而受到了启发。先说说这篇文章的优点把,开启线程异步加载图片,然后刷新UI显示图片,而且通过弱引...
分类:
移动开发 时间:
2015-05-18 20:28:22
阅读次数:
239