首页 > 2014年05月02日 > 全部分享
codeforces New Year Present 题解
也是有趣的题目,操作机器人,要求写一个指令序列。 不过本题对指令序列并没有太严格的要求,所以,基本上可以满足条件 - 放满钱币就可以了,对指令顺序没有要求。 下面是一种程序的写法,循环扫描,还有很多种写法的。...
分类:其他   时间:2014-05-02 23:47:09    收藏:0  评论:0  赞:0  阅读:599
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:59:25    收藏:0  评论:0  赞:0  阅读:655
hdu 1063 Exponentiation (高精度小数乘法)
hdu 1063 Exponentiation 高精度数 模拟乘法...
分类:其他   时间:2014-05-02 22:18:18    收藏:0  评论:0  赞:0  阅读:578
UVA 10453 Make Palindrome(区间简单DP)
题意:给出一串字符串,求出需要至少插入多少个字符使得这个字符串变成会问粗...
分类:其他   时间:2014-05-02 23:27:43    收藏:0  评论:0  赞:0  阅读:591
Cocos2d-x 3.0 - Eclipse上构建一个Android项目
Cocos2d-x 3.0 - Eclipse上构建一个Android项目...
分类:移动平台   时间:2014-05-02 22:29:05    收藏:0  评论:0  赞:0  阅读:525
C#三层架构登陆实例
很早之前,就听说过三层结构了。当时只知道 三层结构 是把 系统的 界面  跟 数据库操作等不相关的程序分别开来。原来这么简单的实现,确实传说中的 三层结构啊。 首先,先来看一下是哪三层。表示层(UI,User Interface),业务逻辑层(BLL BusinessLogicLayer),数据访问层(DAL Data Access Layer)。三层的划分是物理上的划分。 表示层(UI),这...
分类:其他   时间:2014-05-02 23:10:13    收藏:0  评论:0  赞:0  阅读:525
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:26:58    收藏:0  评论:0  赞:0  阅读:489
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:36:21    收藏:0  评论:0  赞:0  阅读:712
给一个运行在windows 7和NAT下的VMWARE虚拟机分配固定IP
VMWARE虚拟机分配固定IP....
分类:Windows开发   时间:2014-05-02 22:48:37    收藏:0  评论:0  赞:0  阅读:625
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:55:48    收藏:0  评论:0  赞:0  阅读:681
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:40:37    收藏:0  评论:0  赞:0  阅读:662
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:52:56    收藏:0  评论:0  赞:0  阅读:535
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:11:51    收藏:0  评论:0  赞:0  阅读:910
Spring定时器配置的两种实现方式OpenSymphony Quartz和java Timer详解
Spring定时器配置的两种实现方式OpenSymphony Quartz和java Timer详解,代码下载地址:http://www.zuidaima.com/share/1772648445103104.htm...
分类:编程语言   时间:2014-05-02 22:42:07    收藏:0  评论:0  赞:0  阅读:496
并发和并行
一个例子明白并发和并行的区别...
分类:其他   时间:2014-05-02 22:05:23    收藏:0  评论:0  赞:0  阅读:446
线程和进程
一个很简单的例子,就把线程和进程的关系搞清楚了。...
分类:编程语言   时间:2014-05-02 22:24:49    收藏:0  评论:0  赞:0  阅读:386
java FileStream文件流操作
java FileStream 文件流操作...
分类:编程语言   时间:2014-05-02 23:32:01    收藏:0  评论:0  赞:0  阅读:1075
ACM-巴什博弈之kiki's game——hdu2147
ACM 巴什博弈 kiki's game hdu2147 PN表格构建...
分类:其他   时间:2014-05-02 22:44:14    收藏:0  评论:0  赞:0  阅读:511
hibernate 关系映射文件配置
User.hbm.xml ...
分类:系统服务   时间:2014-05-02 22:07:31    收藏:0  评论:0  赞:0  阅读:507
多线程之线程常用操作方法
在Java实现多线程的程序中,虽然...
分类:编程语言   时间:2014-05-02 23:14:34    收藏:0  评论:0  赞:0  阅读:489
513条   上一页 1 ... 17 18 19 20 21 ... 26 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!