码迷,mamicode.com
首页 > 2014年05月02日 > 全部分享
POJ 3076 数独DLX
Sudoku Time Limit: 10000MS   Memory Limit: 65536K Total Submissions: 4203   Accepted: 2051 Description A Sudoku grid is a 16x16 grid of cells grouped in sixteen 4x4 squares...
分类:其他好文   时间:2014-05-02 23:15:40    阅读次数:605
我的改进版2048(2)
我的改进版2048,玩家们来刷分吧...
分类:其他好文   时间:2014-05-02 22:34:31    阅读次数:356
codeforces New Year Present 题解
也是有趣的题目,操作机器人,要求写一个指令序列。 不过本题对指令序列并没有太严格的要求,所以,基本上可以满足条件 - 放满钱币就可以了,对指令顺序没有要求。 下面是一种程序的写法,循环扫描,还有很多种写法的。...
分类:其他好文   时间:2014-05-02 23:46:03    阅读次数:516
MSSQL查询第五条到第十条数据
查询数据库中第五条数据到第十条数据,分两种情况: 1,ID是连接的,当然这种情况比较好查。直接SELECT就可以了,取ID大于5小于10就可以了, 这种情况比较少。 2,ID不是连接的,如果要取第五条数据到第十条数据,就得从SQL查询SELECT着手 select top 10 * from TB1 where Id not in (select top 5 Id ...
分类:数据库   时间:2014-05-02 22:58:20    阅读次数:597
hdu 1063 Exponentiation (高精度小数乘法)
hdu 1063 Exponentiation 高精度数 模拟乘法...
分类:其他好文   时间:2014-05-02 22:17:12    阅读次数:289
UVA 10453 Make Palindrome(区间简单DP)
题意:给出一串字符串,求出需要至少插入多少个字符使得这个字符串变成会问粗...
分类:其他好文   时间:2014-05-02 23:26:33    阅读次数:486
Cocos2d-x 3.0 - Eclipse上构建一个Android项目
Cocos2d-x 3.0 - Eclipse上构建一个Android项目...
分类:移动开发   时间:2014-05-02 22:28:02    阅读次数:487
C#三层架构登陆实例
很早之前,就听说过三层结构了。当时只知道 三层结构 是把 系统的 界面  跟 数据库操作等不相关的程序分别开来。原来这么简单的实现,确实传说中的 三层结构啊。 首先,先来看一下是哪三层。表示层(UI,User Interface),业务逻辑层(BLL BusinessLogicLayer),数据访问层(DAL Data Access Layer)。三层的划分是物理上的划分。 表示层(UI),这...
分类:其他好文   时间:2014-05-02 23:09:09    阅读次数:369
cocos2d-x3.0 Slider
.h #include "cocos2d.h" #include "cocos-ext.h" #include "ui/CocosGUI.h" #include "cocostudio/CocoStudio.h" USING_NS_CC; USING_NS_CC_EXT; using namespace ui; RichText* _richText; Text...
分类:其他好文   时间:2014-05-02 22:25:51    阅读次数:459
UVA之10878 - Decode the tape
【题目】 Your boss has just unearthed a roll of old computer tapes. The tapes have holes in them and might contain some sort of useful information. It falls to you to figure out what is written on them...
分类:其他好文   时间:2014-05-02 23:35:16    阅读次数:526
给一个运行在windows 7和NAT下的VMWARE虚拟机分配固定IP
VMWARE虚拟机分配固定IP....
分类:Windows程序   时间:2014-05-02 22:47:33    阅读次数:430
UVA之409 - Excuses, Excuses!
Excuses, Excuses!  Judge Ito is having a problem with people subpoenaed for jury duty giving rather lame excuses in order to avoid serving. In order to reduce the amount of time requi...
分类:其他好文   时间:2014-05-02 23:54:43    阅读次数:474
UVA之537 - Artificial Intelligence?
Artificial Intelligence?  Physics teachers in high school often think that problems given as text are more demanding than pure computations. After all, the pupils have to read and underst...
分类:其他好文   时间:2014-05-02 23:39:35    阅读次数:485
UVA之10361 - Automatic Poetry
Problem I Automatic Poetry Input: standard input Output: standard output Time Limit: 2 seconds Memory Limit: 32 MB   “Oh God”, Lara Croft exclaims, “it’s one of these dumb rid...
分类:其他好文   时间:2014-05-02 22:51:52    阅读次数:352
javafx之CSS初探
javaFX 可以通过css来设计界面。javafx中的css只是w3c css2.1规范的一个扩展和子集,并不完全支持所有的css特性。 javafx中的css元素必须有-fx-前缀。 一、介绍 java8中新增了javafx.css开放了css相关api。 选择器分类: Type选择器:通过Node的getTypeSelector可以获取 id选择器:通过设定id=属性(注意这里的...
分类:编程语言   时间:2014-05-02 22:10:45    阅读次数:1205
Spring定时器配置的两种实现方式OpenSymphony Quartz和java Timer详解
Spring定时器配置的两种实现方式OpenSymphony Quartz和java Timer详解,代码下载地址:http://www.zuidaima.com/share/1772648445103104.htm...
分类:编程语言   时间:2014-05-02 22:41:03    阅读次数:438
并发和并行
一个例子明白并发和并行的区别...
分类:其他好文   时间:2014-05-02 22:04:18    阅读次数:414
567条   上一页 1 ... 21 22 23 24 25 26 27 ... 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!