Radeon HD 7850 vs Radeon R9 270XHW compareIntroThe Radeon HD 7850 comes with a GPU core speed of 860 MHz, and the 2048 MB of GDDR5 RAM runs at 1200 MH...
分类:
其他好文 时间:
2014-07-18 18:33:11
阅读次数:
217
常见的压缩有:对中间结果压缩、对输出结果压缩。压缩对比:算法压缩前/压缩后压缩速度解压速度GZIP13.4%21MB/s118 MB/sLZO20.5%135 MB/s410 MB/sSnappy22.2%172 MB/s409 MB/sSnappy介绍:Snappy 网站:http://code....
分类:
其他好文 时间:
2014-07-18 16:12:24
阅读次数:
352
【原题】
3333: 排队计划
Time Limit: 20 Sec Memory Limit: 128 MB
Submit: 161 Solved: 71
[Submit][Status]
Description
Input
Output
Sample Input
6 2
160 163 164 161 167 160 ...
分类:
其他好文 时间:
2014-07-18 14:07:18
阅读次数:
288
1 public function getReadableFileSize($retstring=null){ 2 3 $sizes = array('byte','kB','MB','GB','TB','PB','EB','ZB','YB'); 4 5 if($...
分类:
Web程序 时间:
2014-07-18 09:31:03
阅读次数:
177
十六进制数容量大小1016 (byte)100256 (byte)1 0004 (KB)10 00064 (KB)100 0001 (MB)再1之后每增加一个零就增加了16字节1KB 对应十六进制400
分类:
其他好文 时间:
2014-07-18 00:39:37
阅读次数:
190
题目如下:
Problem I
23 Out of 5
Input: standard input
Output: standardoutput
Time Limit: 1 second
Memory Limit: 32 MB
Your task is to writea program that can decide whether you can find an arithm...
分类:
其他好文 时间:
2014-07-16 17:16:32
阅读次数:
203
$("#uploader").plupload({
/*常规设置*/
runtimes:‘html5,flash,silverlight,html4‘,
url:‘hyzx/seller/commPicUpload.action‘,
/*最大文件限制b,kb,mb,gb,tb*/
max_file_size:‘1mb‘,
/*是否生成唯一文件名,如果为true会为上传的文件唯一的文件名。*/
unique_names:true,
/*..
分类:
Web程序 时间:
2014-07-16 16:29:00
阅读次数:
339
高桥和低桥
Time Limit: 1 Sec Memory Limit: 128 MB
Submit: 358 Solved: 60
Description
有个脑筋急转弯是这样的:有距离很近的一高一低两座桥,两次洪水之后高桥被淹了两次,低桥却只被淹了一次,为什么?答案是:因为低桥太低了,第一次洪水退去之后水位依然在低桥之上,所以不算“淹了两次”。举例说明:
假定高...
分类:
其他好文 时间:
2014-07-16 10:46:20
阅读次数:
202
iconv函数库能够完成各种字符集间的转换,是php编程中不可缺少的基础函数库。
用法如下:
$string = "亲爱的朋友欢迎访问胡文芳的博客,希望给您带来一点点的帮助!";
iconv("utf8","gbk",$string)//将字符串string 编码由utf8转变成gbk;
扩展如下:
echo $str= '你好,欢迎访问胡文芳的博客,该博客记录...
分类:
Web程序 时间:
2014-07-15 12:57:26
阅读次数:
268
1、进入information_schema数据库(存放了其他的数据库的信息)useinformation_schema;2、查询所有数据的大小:SELECTconcat(round(sum(DATA_LENGTH/1024/1024),2),’MB’)asdataFROMTABLES;3、查看指定数据库的大小:比如查看数据库hellodb的大小SELECTconcat(round(sum(DATA_..
分类:
数据库 时间:
2014-07-14 11:39:30
阅读次数:
253