Jump GameGiven an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents yo...
分类:
其他好文 时间:
2014-10-21 12:11:42
阅读次数:
222
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:
其他好文 时间:
2014-10-21 11:42:57
阅读次数:
165
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:
其他好文 时间:
2014-10-21 02:15:19
阅读次数:
187
一维数组、二维数组的创建 数组定义:数组(array)是一种数据类型,它包含或者存储了编码的值,每个编码的值称作该数组的一个元素(element),每个元素的编码被称作为下标(index)。 弦外音:JavaScript是一种无类型的语言,所以一个数组元素可具有任意的数据类型,同一数组的不同...
分类:
编程语言 时间:
2014-10-21 00:56:46
阅读次数:
176
problem: Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra sp...
分类:
其他好文 时间:
2014-10-20 22:53:53
阅读次数:
217
Launching Fullscreen Mode // Find the right method, call on correct element
function launchIntoFullscreen(element) {
if(element.requestFullscreen) {
element.requestFullscreen();
} else if(e...
【题目】
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might become 4
5 6 7 0 1 2).
Find the minimum element.
You may assume no duplicate...
分类:
其他好文 时间:
2014-10-20 11:51:28
阅读次数:
239
JS中如何获取元素:1、通过ID名称来获取元素:document get element by id 'link'docuemnt.getElementById('link');2……事件:鼠标事件、键盘事件、系统事件、表单事件、自定义事件……onclickonmouseoveronmouseout...
分类:
Web程序 时间:
2014-10-20 00:48:24
阅读次数:
222
Single NumberGiven an array of integers, every element appearstwiceexcept for one. Find that single one.c++版:class Solution {public: int singleNumbe.....
分类:
其他好文 时间:
2014-10-19 23:00:35
阅读次数:
260
Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).Find the minimum element.Yo...
分类:
其他好文 时间:
2014-10-19 16:56:55
阅读次数:
192