1. websiteSSL(secure Socket Layer)TLS(transport Layer Security) - SSL3.0基础之上提出的安全通信标准,目前版本是1.0openssl 主页 ->http://www.openssl.org/openssl 中文文档 ->http:...
分类:
其他好文 时间:
2015-01-23 19:42:20
阅读次数:
3312
题目大意:一个班级中,两个相邻的人是朋友,一对朋友如果同时选择文科或者理科会有加成。问最多能够得到的权值是多少。
思路:先假设得到所有的权值,然后运用最小割的意义求出最大的获利。具体方法见 http://hzwer.com/2422.html
CODE:
#define _CRT_SECURE_NO_WARNINGS
#include
#include
#inclu...
分类:
移动开发 时间:
2015-01-23 18:30:16
阅读次数:
198
在调查webstorage的过程中,一步一步了解了各种缓存或存储机制,local storage本地存储,application cache离线应用存储,http cache是http本身自带的缓存机制,cookie多用于身份验证;httpcache和cookie是在页面访问时随request和re...
分类:
Web程序 时间:
2015-01-23 18:05:37
阅读次数:
224
题目大意:求C(n,m)%p。
思路:Lucas定理:C(n,m)%p = C(n/p,m/p)*C(n%p,m%p)%p
处理出来1~10007所有的阶乘和阶乘的逆元,nm都小于10007的时候就可以直接算了,剩下的情况递归处理。
CODE:
#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
...
分类:
其他好文 时间:
2015-01-23 09:37:25
阅读次数:
166
现象描述:
monkey --pkg-blacklist-file storage/sdcard0/blacklist.txt --ignore-security-exc
eptions --monitor-native-crashes -s 800 -v -v -v --throttle 1427 180000 >sdcard
/Monkey.log ...
分类:
移动开发 时间:
2015-01-22 21:52:34
阅读次数:
441
http://diaocow.iteye.com/blog/1768647http://www.cnblogs.com/me-sa/archive/2011/08/11/erlang0007.htmlets是什么?ets是Erlang Term Storage的缩写,它是一个基于内存的KV Tabl...
分类:
其他好文 时间:
2015-01-22 17:55:57
阅读次数:
334
在CentOS6安装MySQL很简单yuminstallmysql-server安装完成后尝试登录MySQL却不成功,用空密码和系统root密码都不成mysql-uroot-p原来,在安装完成后,还需要使用mysql_secure_installation设置root密码和其他安全设置shell>mysql_secure_installation
分类:
数据库 时间:
2015-01-22 15:53:33
阅读次数:
166
setStorage={ getLocal : function(key){ //获得localStorage里面的值 var storage = window.localStorage; if(storage.getItem(key)){ ...
分类:
Web程序 时间:
2015-01-22 15:00:19
阅读次数:
210
setStorage={ getLocal : function(key){ //获得localStorage里面的值 var storage = window.localStorage; if(storage.getItem(key)){ ...
分类:
Web程序 时间:
2015-01-22 12:56:53
阅读次数:
189
系统环境:
操作系统:Centos6.5X86_64fastdfs版本:FastDFS_v5.02.tar
Fastdfs_trackerIP:172.16.4.30
Fastdfs_storage_s1IP:172.16.4.31
Fastdfs_storage_s1IP:172.16.4.32
Fastdfs_clientIP:172.16.4.33
一.fastdfs和libevent的下载
地址:http://sourceforge.net/projects/fas..
分类:
其他好文 时间:
2015-01-22 11:19:34
阅读次数:
171