码迷,mamicode.com
首页 > 其他好文
批量该文件名
ren *.txt *.xls
分类:其他好文   时间:2014-05-26 15:10:51    阅读次数:189
杭电1316
How Many Fibs?Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3804Accepted Submission(s): 1498 Pr...
分类:其他好文   时间:2014-05-26 15:11:13    阅读次数:197
断言assert的应用
assert应用举例
分类:其他好文   时间:2014-05-26 15:11:34    阅读次数:167
vctools\vc7libs\ship\atlmfc\include\afxcmn.inl Line: 206 解决办法
vctools\vc7libs\ship\atlmfc\include\afxcmn.inl Line: 206 解决办法Visual C++ Debugging:Step by Step IntroductionQ:I have this piece of code that crashes wh...
分类:其他好文   时间:2014-05-26 15:12:30    阅读次数:2194
poj 3253 -- Fence Repair
Fence RepairTime Limit: 2000MSMemory Limit: 65536KTotal Submissions: 24252Accepted: 7766DescriptionFarmer John wants to repair a small length of the f...
分类:其他好文   时间:2014-05-26 15:12:15    阅读次数:193
判断闰年(go语言版本)
1 import "strconv" 2 3 func IsLeapYear(y string) bool { //y == 2000, 2004 4 //判断是否为闰年 5 year, _ := strconv.Atoi(y) 6 if year%4 == 0 && y...
分类:其他好文   时间:2014-05-26 15:12:52    阅读次数:230
poj 2288 Islands and Bridges_状态压缩dp_哈密尔顿回路问题
题目链接题目描写叙述:哈密尔顿路问题。n个点,每个点有权值,设哈密尔顿路为 C1C2...Cn,Ci的权值为Vi,一条哈密尔顿路的值分为三部分计算:1.每个点的权值之和2.对于图中的每一条CiCi+1,加上Vi*Vi+13.对于路径中的连续三个点:CiCi+1Ci+2,若在图中,三点构成三角形,则要...
分类:其他好文   时间:2014-05-26 15:14:18    阅读次数:192
百度地图是用过程笔记
记忆力不行,做过好多东西,下次用的时候还会忘记,于是就记录一些,为了以后更快的入手:1.marker的点击事件中获取marker的信息 在函数中this就代表当前的markerthis.getPosition()就获取到了marker的位置,不能用e.point 这个是点击的位置。
分类:其他好文   时间:2014-05-26 15:14:03    阅读次数:195
Problem B Back to High School Physics
Problem B Back to High School Physics Input: standard input Output: standard output A particle has initial velocity and constant acceleration. If its ...
分类:其他好文   时间:2014-05-26 15:14:39    阅读次数:221
被小伙伴们吓哭了:可怕的命令
备份是王道。备份的可恢复性检查是王道中的王道。保持清醒(严禁饮酒操作¥%#^)。遇事冷静。
分类:其他好文   时间:2014-05-26 15:15:23    阅读次数:216
JBOSS尝鲜
环境搭建:1. jdk-6u16-windows-i586.exe2. jboss-5.1.0.GA-jdk6.zipJDK安装:安装过程很简单,应该都知道怎么安装软件。。。。安装完JDK后,需要做如下配置:我的电脑->属性->高级->环境变量,在 系统变量 中点击新建下面二项:1. 名:JAVA_...
分类:其他好文   时间:2014-05-26 15:16:21    阅读次数:337
一些好用的网址
MATLAB程序http://www.cnblogs.com/tiandsp/category/348031.html2013计算机视觉代码合集http://www.yuanyong.org/cv/cv-code-one.html
分类:其他好文   时间:2014-05-26 15:18:00    阅读次数:222
避免Block中的强引用环
【避免Block中的强引用环】 In manual reference counting mode, __block id x; has the effect of not retaining x. In ARC mode, __block id x; defaults to retaining ....
分类:其他好文   时间:2014-05-26 15:18:44    阅读次数:219
学习
webstuffshare.com/demo/CubeInformation/index.htmlhttp://www.w3cplus.com/demo/419.html
分类:其他好文   时间:2014-05-26 15:19:11    阅读次数:186
流式布局
流式布局,就是用百分比设置宽度的布局形式目标宽度/上下文宽度=值无标题文档 解决办法:使用CSS3中的box-sizing属性(IE8开始兼容了),这个属性用来规定,CSS中出现的width值是谁的宽度?无标题文档 这个属性在流式布局中特别常用无标...
分类:其他好文   时间:2014-05-26 15:19:26    阅读次数:286
datatable动态添加,及填充数据
DataTable tblDatas = new DataTable("Datas"); tblDatas.Columns.Add("ID", Type.GetType("System.Int32")); tblDatas.Columns[0].AutoIncremen...
分类:其他好文   时间:2014-05-26 15:20:10    阅读次数:239
JFreeChart时间轴固定24小时每天刷新
Timeseries时间轴,设置x轴固定长度24小时xAxis.setFixedAutoRange(3600000 * 2D),再画出当天24点这一点Date day = new Date(); day.setHours(23); day.setMinutes(59); Mi...
分类:其他好文   时间:2014-05-26 15:20:52    阅读次数:317
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!