取一个小于n的整数作为第一个增量,把序列分组。所有距离为增量的倍数的元素放在同一个组中。先在各组内进行直接插入排序;然后,取第二个增量(第二个= 0 && guard = 1){ shellInsertSort(elements, di); //每次减半,最后增量必须为1 di =...
分类:
编程语言 时间:
2014-09-28 21:25:25
阅读次数:
187
GoF (Gang of Four,四人组, 《Design Patterns: Elements of Reusable Object-Oriented Software》/《设计模式》一书的作者:Erich Gamma、Richard Helm、Ralph Johnson、John Vlissi...
分类:
Web程序 时间:
2014-09-28 19:19:05
阅读次数:
275
这里有两种方法帮你删除在一个ArrayList里重复的elements。下面的程序片段里,removeDuplicate方法不维护顺序 (Order),而removeDuplicateWithOrder方法会保持顺序 (Order),但会有些性能上的牺牲。The removeDuplicate Me...
分类:
其他好文 时间:
2014-09-28 17:06:33
阅读次数:
214
1. document.formName.item("itemName") 问题说明:IE下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"];Firefox下,只能使用document....
分类:
编程语言 时间:
2014-09-26 19:25:08
阅读次数:
258
jQuery1、几种获取子元素的方法及区别children方法获得的仅仅是元素一下级的子元素,即:immediate children。find方法获得所有下级元素,即:descendants of these elements in the DOM treechildren方法的参数selecto...
分类:
Web程序 时间:
2014-09-26 18:39:28
阅读次数:
221
Given an array where elements are sorted in ascending order, convert it to a height balanced BST. 1 /** 2 * Definition for binary tree 3 * public cl.....
分类:
其他好文 时间:
2014-09-26 13:49:58
阅读次数:
154
Let us consider sets of positive integers less than or equal to n. Note that all elements of a set are
different. Also note that the order of elements doesnt matter, that is, both {3, 5, 9} and {5, 9...
分类:
其他好文 时间:
2014-09-26 02:35:48
阅读次数:
191
找很久。原来差一个ELEMENTS 关键字。想到哪里插入子节点。就直接写一条语句,加一个ELEMENTS。为什么baidu这么就都找不到。到处都是转来转去的东西。郁闷。select h.*,(select d.* from v_web_OrderStatusD d where d.ORDNUMBER...
分类:
数据库 时间:
2014-09-26 00:10:38
阅读次数:
193
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn't mat...
分类:
其他好文 时间:
2014-09-25 13:01:18
阅读次数:
226
In a DTD, elements are declared with an ELEMENT declaration.Declaring ElementsIn a DTD, XML elements are declared with an element declaration with the...
分类:
其他好文 时间:
2014-09-25 03:09:48
阅读次数:
351