码迷,mamicode.com
首页 > 2017年07月08日 > 全部分享
洛谷P1941 飞扬的小鸟 动态规划
洛谷P1941 飞扬的小鸟 动态规划 这道题主要要注意一下飞到m以上之后高度还是 m 这个就要在判断一下 比较直接暴力的动归 是 O(N^3) f[ i ][ j ] 到 i ,j 这个位置 所需要的最少点击次数 如果不能到,就是无限大 f[ i ][ j ] = min(f[ i-1 ][ j-u ...
分类:其他好文   时间:2017-07-08 13:18:38    阅读次数:158
reset.css
/* html5doctor.com Reset Stylesheet v1.4.1 2010-03-01 Author: Richard Clark - http://richclarkdesign.com */ html, body, div, span, object, iframe, h1,... ...
分类:Web程序   时间:2017-07-08 13:18:23    阅读次数:235
scikit-learn:3.3. Model evaluation: quantifying the quality of predictions
參考:http://scikit-learn.org/stable/modules/model_evaluation.html#scoring-parameter 三种方法评估模型的预測质量: Estimator score method: Estimators都有 score method作为默认 ...
分类:其他好文   时间:2017-07-08 13:18:12    阅读次数:319
Welcome to Jekyll !!!
You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many diffe ...
分类:其他好文   时间:2017-07-08 13:18:04    阅读次数:174
数据库
《数据库系统概念》:http://pan.baidu.com/s/1hsiEaVE 小李的数据库之旅(上):http://chuansong.me/n/742733851433 小李的数据库之旅(下):http://chuansong.me/n/753738551331 1、数据库系统的应用 2、数 ...
分类:数据库   时间:2017-07-08 13:17:56    阅读次数:251
lucene创建索引
1.导入jar包2.创建实体Beanpackagecom.zhishang.lucene; /** *CreatedbyAdministratoron2017/7/8. */ publicclassHtmlBean{ privateStringtitle; privateStringcontent; privateStringurl; publicvoidsetTitle(Stringtitle){ this.title=title; } publicvoidsetContent(Stri..
分类:Web程序   时间:2017-07-08 13:17:51    阅读次数:158
struct结构体在c和c++中的差别
非常多次遇到这个struct的问题,今天在这里简单总结一下我的理解 一、struct在C 中的使用 1、单独使用struct定义结构体类型 struct Student { int id; int name; }stu1; struct Student stu2; stu1.id=1; stu2.i ...
分类:编程语言   时间:2017-07-08 13:17:43    阅读次数:102
Eclipse离线安装Emmet插件
Eclipse离线安装Emmet插件 近期发现了一个写前端代码很好的一个东西,一个叫做Emmet的工具,这个工具使用仿CSS选择器的语法来生成代码,大大提高了HTML/CSS代码编写的速度,前身就是大名鼎鼎的Zen coding。先来看张图: 是不是非常带劲呢,假设能达到图中的效果,对我们开发前端的 ...
分类:系统相关   时间:2017-07-08 13:17:34    阅读次数:254
iOS真机调试证书和描述文件申请
iOS真机调试证书适用于,不能直接拿设备连接xcode进行测试的场景,比如发给客户或朋友测试,或用其它跨平台开发工具appcan之类开发的app进行测试。 iOS真机调试需要先添加设备 一、添加测试设备 1、获取UDID 使用 iPhone 或 iPad 扫描下面的二维码,即可快速获取 UDID ? ...
分类:移动开发   时间:2017-07-08 13:17:27    阅读次数:275
UVa 10954 Add All(优先队列)
题意 求把全部数加起来的最小代价 a+b的代价为(a+b) 越先运算的数 要被加的次数越多 所以每次相加的两个数都应该是剩下序列中最小的数 然后结果要放到序列中 也就是优先队列了 #include<cstdio> #include<queue> using namespace std; priori ...
分类:其他好文   时间:2017-07-08 13:17:19    阅读次数:125
[LeetCode] Hamming Distance
The Hamming Distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, calcul ...
分类:其他好文   时间:2017-07-08 13:17:12    阅读次数:173
JavaSE7基础 类中 给出构造方法后,系统默认的无参数构造方法就不能使用
版本参数:jdk-7u72-windows-i586注意事项:博文内容仅供参考,不可用于其他用途。 代码 编译与运行 ——————————————————————————————————————————Java优秀,值得努力学习。学习资源:黑马程序员_Java基础视频-深入浅出精华版/*来自黑马云课 ...
分类:编程语言   时间:2017-07-08 13:17:04    阅读次数:179
Android中Parcelable接口使用方法
1. Parcelable接口 Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ...
分类:移动开发   时间:2017-07-08 13:16:56    阅读次数:290
JavaSE7基础 得到一个正整数有几位 String.valueOf(num).length()
版本参数:jdk-7u72-windows-i586注意事项:博文内容仅供参考,不可用于其他用途。 代码 编译与运行 ——————————————————————————————————————————Java优秀,值得努力学习。学习资源:黑马程序员_Java基础视频-深入浅出精华版/*来自黑马云课 ...
分类:编程语言   时间:2017-07-08 13:16:50    阅读次数:159
关闭错误显示
display_errors 错误回显,一般常用语开发模式,但是很多应用在正式环境中也忘记了关闭此选项。错误回显可以暴露出非常多的敏感信息,为攻击者下一步攻击提供便利。推荐关闭此选项。 display_errors = On 开启状态下,若出现错误,则报错,出现错误提示 dispaly_errors ...
分类:其他好文   时间:2017-07-08 13:16:44    阅读次数:165
jericho解析html
1.导入jar包2.实现源代码packagecom.zhishang.lucene; importnet.htmlparser.jericho.Element; importnet.htmlparser.jericho.HTMLElementName; importnet.htmlparser.jericho.Source; importorg.junit.Test; importjava.io.File; importjava.io.IOException; /** *Createdb..
分类:Web程序   时间:2017-07-08 13:16:38    阅读次数:315
红帽/CentOS ext4无法格式化大分区
红帽/CentOS 6.5的e2fsprogs版本号为1.41.12较低。无法创建16TB以上的文件系统 下载最新的e2fsprogs,编译安装 ftp://ftp.ntu.edu.tw/linux/kernel/people/tytso/e2fsprogs/ tar zxvf e2fsprogs- ...
分类:其他好文   时间:2017-07-08 13:16:23    阅读次数:281
1327条   上一页 1 ... 51 52 53 54 55 56 57 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!