Te Regular Expression literal also creates new
objects in ECMA Script 5. And one last note that calling RegExp() without new(as
a function, not as a c...
分类:
编程语言 时间:
2014-06-02 15:50:52
阅读次数:
280
递归建树,由题知该树是一棵二叉树,且除根节点外其它点的度为0或2。dp[i][j]表示来到第i个走廊(还未走过这条走廊)还剩下j时间,能拿到最大的画的数量。dp[i][j]=max(dp[i][j],dp[lson[i]][k]+dp[rson][last_time-k])#include#incl...
分类:
其他好文 时间:
2014-06-02 08:38:14
阅读次数:
173
温馨提示:,如果您使用移动终端阅读本篇文章,请连接wifi的情况下阅读,里面有大量图片,以免造成您不必要的损失。潜水博客园很多年,闲来无事,聊一下自己的经历,语文不好(如有什么错别字,请您在下评论)望您谅解,没有上过什么学的。博主介绍
2010 入园博客园学习.net,只是为后面做.net开发做铺垫...
分类:
移动开发 时间:
2014-06-02 08:36:09
阅读次数:
316
//children 只包括元素节点,不包括文本节点
childNodes既包括元素节点,又包括文本节点可以通过alert(oU.children.leght);和alert(OUl.childNodes.length);进...
分类:
编程语言 时间:
2014-06-02 05:39:42
阅读次数:
307
Reverse Words in a String
Total Accepted: 15012 Total
Submissions: 108513My Submissions
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",...
分类:
其他好文 时间:
2014-06-02 05:34:14
阅读次数:
214
importjava.util.Scanner;
publicclassA01{
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
Scannerinput=newScanner(System.in);
System.out.println("请输入5句话:");
String[]names=newString[5];
for(inti=0;i<names.length;i++){
..
分类:
编程语言 时间:
2014-06-02 03:49:43
阅读次数:
1535
importjava.util.Scanner;
publicclassA02{
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
Scannerinput=newScanner(System.in);
doublenumber[]=newdouble[5];
doublesum=0;
for(inti=0;i<number.length;i++){
System.out.println("..
分类:
编程语言 时间:
2014-06-02 03:46:29
阅读次数:
335
importjava.util.Arrays;
publicclassA03{
publicstaticvoidmain(String[]args){
//TODOAuto-generatedmethodstub
charLetter[]=newchar[]{‘a‘,‘c‘,‘u‘,‘b‘,‘e‘,‘p‘,‘f‘,‘z‘};
System.out.print("原字符列表:");
for(inti=0;i<Letter.length;i++){
System.out..
分类:
编程语言 时间:
2014-06-02 03:15:43
阅读次数:
492
oraclesys用户无效对象
selectowner,object_name
,replace(object_type,‘‘,‘‘)object_type
,to_char(created,‘yyyy-mm-dd‘)ascreated
,to_char(last_ddl_time,‘yyyy-mm-dd‘)aslast_ddl_time,
status
fromdba_objectswherestatus=‘INVALID‘andowner=‘SYS‘;
OWNEROBJECT_NAMEO..
分类:
数据库 时间:
2014-06-02 03:14:26
阅读次数:
405
子类的position:absoulte;父类元素只有相对定位后,移动位置,子类才能跟着移动
子节点 firstChild firstElementChild lastChild last...
分类:
编程语言 时间:
2014-06-02 01:39:07
阅读次数:
308