题目描述Given a non-negative integer sequence A with length N, you can exchange two adjacent numbers each time. After K exchanging operations, what’s the ...
分类:
其他好文 时间:
2014-06-22 23:36:42
阅读次数:
232
如下的html,为什么每次输出都是5,而不是点击每个p,就alert出对应的1,2,3,4,5
闭包演示
function init() {
var pAry = document.getElementsByTagName("p");
for( var i=0; i<pAry.length; i+...
分类:
编程语言 时间:
2014-06-22 22:19:05
阅读次数:
229
C语言0长度数组(柔性数组)
0长度数组,又称为柔性数组(flexible array),通常用来实现变长数组,常见于TLV(type-length-value)的数据结构中。在标准 C 和 C++ 中,不允许用 0 长度数组,但在...
分类:
编程语言 时间:
2014-06-22 20:58:59
阅读次数:
284
(二叉)堆是一个数组,是一颗近似完全二叉树,分为大顶堆&小顶堆。表示堆的数组A有两个属性:(1)A.length表示数组元素的个数;(2)A.heap-size表示有多少个堆元素存储在数组A中。更多的关于堆的性质的介绍:算法导论第三版:p85-p89、编程珠玑:p141-p145。
堆的操作主要包括堆插入、堆删除两个,而堆插入设计到FixUp操作(自底向上调整),堆删除涉及到FixDown操作(自顶向下调整,大顶堆时对应算法导论上的MAX-HEAPIFY操作)。
本文主要给出的是大顶堆和小顶堆的基本操作的C...
分类:
其他好文 时间:
2014-06-22 13:58:41
阅读次数:
158
leetcode:Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last...
分类:
其他好文 时间:
2014-06-22 13:41:07
阅读次数:
154
Printing known-length multipage output Using the PrintDataGrid control for multipage grids Example: Printing with multipage PrintDataGrid controls Mul...
分类:
其他好文 时间:
2014-06-22 13:01:58
阅读次数:
159
Toast can show the help/prompts to user. There have five effect of toast as bellow:
1.default effect:
code:
Toast.makeText(getApplicationContext(), "默认Toast样式",
Toast.LENGTH_SHORT).sho...
分类:
移动开发 时间:
2014-06-22 11:35:38
阅读次数:
500
如果输入框为空 (str.length==0),则该函数清空 txtHint 占位符的内容,并退出函数。
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlht...
分类:
其他好文 时间:
2014-06-22 07:39:19
阅读次数:
283
运行shell脚本提示“syntax error near unexpected token for((i=0;i<$length;i++))”...
分类:
其他好文 时间:
2014-06-21 21:42:38
阅读次数:
342
我不懂C++,我敢求实。大神忽略我的言辞,只看即可o(∩_∩)o...
分类:
编程语言 时间:
2014-06-21 21:00:03
阅读次数:
258