Today , I writed a awk script,it can get http address. The http address only contains number, alphabet,backslash and point. My awk script is following...
分类:
其他好文 时间:
2014-09-26 02:49:58
阅读次数:
196
大数据分页实现与性能优化摘要:Web 应用程序中经常使用数据分页技术,该技术是提高海量数据访问性能的主要手段。实现web数据分页有多种方案,本文通过实际项目的测试,对多种数据分页方案深入分析和比较,找到了一种更优的数据分页方案Row_number()二分法。它依靠二分思想,将整个待查询记录分为2部分...
分类:
其他好文 时间:
2014-09-26 02:07:48
阅读次数:
477
--查看过程、函数视图dba_sourceuser_sourceall_source--删除存储过程dropprocedureSP_TMP;dropfunctionfun_tmp;---函数to_char:转换数据这字符串,也可以把10进制转换为16进制(注意xx的个数)。SQL>selectto_char(100,‘xx‘)fromdual;
TO_
---
64to_number:字符串转为数字..
分类:
数据库 时间:
2014-09-26 00:21:18
阅读次数:
290
arr是引用类型 number是值类型下面有两个方法function myReverse(arr){for(var i=0;i<arr.length/2;i++){var tmp=arr[i];arr[i]=arr[arr.length-i-1];arr[arr.length-i-1]=tmp;}}...
分类:
Web程序 时间:
2014-09-25 23:03:17
阅读次数:
214
is检测某实例是否为该类,as返回null自动转换:保证精度不降低强制转换:Number(a),(x+y) as Number,只是本次临时转换转换函数:i.toString(2)--数字转换为字符串(参数为进制),parseInt("字符串",字符串进制)
分类:
其他好文 时间:
2014-09-25 22:18:07
阅读次数:
175
PHP has large number of predefined constants. This HOWTO will present the seven most important, most practical and most useful PHP Magic Constants.__F...
分类:
Web程序 时间:
2014-09-25 21:58:27
阅读次数:
200
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3652题解:先预处理([0,0][1,1],[2,2]....[0,9],[10, 19],[20,29]......[900000000, 1000000000] 区域中 有子串13(用1表示)余数为0...
分类:
其他好文 时间:
2014-09-25 21:23:47
阅读次数:
216
Network of Schools
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 11407
Accepted: 4539
Description
A number of schools are connected to a computer netwo...
分类:
Web程序 时间:
2014-09-25 19:11:47
阅读次数:
233
在html中,某些字符时预留的,如小于号(),浏览器会认为它们是标签;有些字符无法用键盘输入。如果需要正确的显示它们,就需要在html源码中使用字符实体。字符实体有实体名称和实体数字两种表示形式:&entity_name; //实体名称&entity_number; //实体数字如小于号,可以写为&...
分类:
Web程序 时间:
2014-09-25 19:02:17
阅读次数:
198
js中的数据类型有undefined,boolean,number,string,object等5种,前4种为原始类型,第5种为引用类型。
分类:
编程语言 时间:
2014-09-25 18:56:07
阅读次数:
182