首页 > 2016年02月05日 > 全部分享
【CodeForces 312B】BUPT 2015 newbie practice #3A Archer
题 SmallR is an archer. SmallR is taking a match of archer with Zanoes. They try to shoot in the target in turns, and SmallR shoots first. The probabil
分类:其他   时间:2016-02-05 18:39:43    收藏:0  评论:0  赞:0  阅读:270
使用集合组织相关数据
集合概述 集合简单的说就是数组的升级版。他可以动态的对集合的长度(也就是集合内最大元素的个数)进行定义和维护! ArrayList ArrayList非常类似于数组。也有人称他为数组列表,它的容量可以根据需要进行动态扩充,而它的索引也会根据集合容量的扩展而重新分配和调整。也就是说ArrayList集...
分类:其他   时间:2016-02-05 18:39:26    收藏:0  评论:0  赞:0  阅读:216
jQuery DataTables 使用手册(精简版)
转载请注明出处:http://www.cnblogs.com/shamoyuu/p/5182940.html 一、常用属性 //把公共的设置项都放在这里,就不需要每个页面都设置一遍了,放在jQuery对象上是为了避免污染全局变量$.dataTablesSettings = { processing
分类:Web开发   时间:2016-02-05 18:39:18    收藏:0  评论:0  赞:0  阅读:289
JOIN_TAB
typedef struct st_join_table { st_join_table() {} /* Remove gcc warning */ TABLE *table; KEYUSE *keyuse; /**< pointer to first used key */ SQL_SELECT
分类:其他   时间:2016-02-05 18:39:10    收藏:0  评论:0  赞:0  阅读:195
libevent入门
Libevent API =============================== evtimer_new evtimer_new(base, callback, NULL) 用来做定时器,即当达到一定时间后调用回调函数callback。用evtimer_add激活定时器。比如: my_nod
分类:其他   时间:2016-02-05 18:39:02    收藏:0  评论:0  赞:0  阅读:202
Dijkstra算法 最短路径 (部分)
void Dijkstra(int n, int v, int *dist, int *prev, int c[maxnum][maxnum]) { bool s[maxnum]; // 判断是否已存入该点到S集合中 for(int i=1; i<=n; ++i) { dist[i]=c[v][i]
分类:编程语言   时间:2016-02-05 18:38:54    收藏:0  评论:0  赞:0  阅读:300
Zookeeper专题
Zookeeper概念、编程、应用。
分类:其他   时间:2016-02-05 18:38:46    收藏:0  评论:0  赞:0  阅读:280
伪类和伪元素
伪类: 伪元素: 内容摘自一篇文章,转载自https://segmentfault.com/a/1190000000484493,详细内容,可点进去看。
分类:其他   时间:2016-02-05 18:38:38    收藏:0  评论:0  赞:0  阅读:196
几款LINUX下的CHM查看器
转帖地址:http://blog.csdn.net/aking21alinjuju/article/details/4436440 本文旨在介绍linux下的常见chm阅读软件及其安装,并针对一些问题给出解决方法。一、CHMSEE 这个比较常见了,呵呵。安装: sudo apt-get instal
分类:系统服务   时间:2016-02-05 18:38:21    收藏:0  评论:0  赞:0  阅读:334
git使用小记
1、安装node ,新版的自带了npm和bower https://nodejs.org/dist/v4.2.6/node-v4.2.6-x64.msi 2、安装git https://github-cloud.s3.amazonaws.com/releases/23216272/d855ed4a-
分类:其他   时间:2016-02-05 18:38:13    收藏:0  评论:0  赞:0  阅读:226
IE8 png图片黑色阴影的解决方案!
以前都没有留意这个问题,最近开发中才发现。 什么情况下会出现黑边? PNG透明图片,同时有阴影,具备着两个IE8是不会有问题的,再加上使用了 “渐变显示”,就会出现了。 解决方法: img{display:block;filter:progid:DXImageTransform.Microsoft.
分类:其他   时间:2016-02-05 18:38:07    收藏:0  评论:0  赞:0  阅读:143
移动开发中使用Onsen UI的笔记
onsen var m_index = ons.bootstrap() 初始化框架 m_index 赋值 增加对象。 m_index.value('getUser',{ // user:window.localStorage.getItem("user")//生产 userCode:"xuhaiyo
分类:移动平台   时间:2016-02-05 18:37:57    收藏:0  评论:0  赞:0  阅读:400
JAVA数据类型转换
1如何将字串 String 转换成整数 int? A. 有两个方法: 1). int i = Integer.parseInt([String]); 或 i = Integer.parseInt([String],[int radix]); 2). int i = Integer.valueOf(m
分类:编程语言   时间:2016-02-05 18:37:49    收藏:0  评论:0  赞:0  阅读:185
最小花费
#include<iostream> using namespace std; double a[2001][2001],dis[2001]={0},minn; int n,m,i,j,k,x,y,f[2001]={0}; void init() { cin>>n>>m; for(i=1;i<=m;
分类:其他   时间:2016-02-05 18:37:41    收藏:0  评论:0  赞:0  阅读:185
PhpStorm 10 破解方法
最新版PhpStorm 10正式版改进了PHP 7支持,改进代码完成功能。 PhpStorm 是最好的PHP开发工具,使用它进行PHP开发将会让你感觉到编程的乐趣。 快乐无极终于从oschina看到了注册方法: phpstorm已经升级到10.0,原注册码失效,10.0注册方法:注册时选择“Lice
分类:Web开发   时间:2016-02-05 18:37:33    收藏:0  评论:0  赞:0  阅读:299
华为手机浏览器不支持PUT提交方式的解决方案
最近所在技术团队在开发webapp项目,前端angularjs+后端.Net MVC API,API登录接口定义为PUT提交方式,在做兼容测试时发现UC、safari、微信浏览器下都可以登录,但在华为自带浏览器下登录接口总是报错,抓包发现PUT提交请求体为空,用Inisomnia模拟提交空值得到和华
分类:移动平台   时间:2016-02-05 18:37:16    收藏:0  评论:0  赞:0  阅读:1104
class JOIN
class JOIN :public Sql_alloc { JOIN(const JOIN &rhs); /**< not implemented */ JOIN& operator=(const JOIN &rhs); /**< not implemented */ public: JOIN_T
分类:其他   时间:2016-02-05 18:37:08    收藏:0  评论:0  赞:0  阅读:249
分治算法(二)
例5、取余运算(mod) 源程序名 mod.???(pas, c, cpp) 可执行文件名 mod.exe 输入文件名 mod.in 输出文件名 mod.out 【问题描述】 输入b,p,k的值,求b^p mod k的值。其中b,p,k*k为长整型数。 【样例】 mod.in 2 10 9 mod.
分类:编程语言   时间:2016-02-05 18:36:52    收藏:0  评论:0  赞:0  阅读:252
分治算法练习(一)
分治算法_小车问题 AYYZOJ p1428 COGS p559 具体讲解见此课件 1 //分治 2 program car1(input,output); 3 const zero=1e-4; 4 var s,a,b,c,c0,c1,t1,t2,t3,t4:real; 5 BEGIN 6 assi
分类:编程语言   时间:2016-02-05 18:36:36    收藏:0  评论:0  赞:0  阅读:233
Dell PowerEdge 系列服务器的远程控制命令
Dell PowerEdge 服务器远程控制参考手册 本手册介绍 Dell PowerEdge 系列服务器的远程控制命令。 远程控制功能 本文所涉及的远程控制是指基于主板 Baseboard Management Controller (BMC) 或远程控制卡 Remote Access Contr
分类:其他   时间:2016-02-05 18:36:28    收藏:0  评论:0  赞:0  阅读:789
5228条   上一页 1 ... 85 86 87 88 89 ... 262 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!