Determine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie, -1)If you are thinki...
分类:
其他好文 时间:
2014-11-15 09:58:31
阅读次数:
222
题目1739: [Usaco2005 mar]Space Elevator 太空电梯Time Limit:5 SecMemory Limit:64 MBDescriptionThe cows are going to space! They plan to achieve orbit by buil...
分类:
其他好文 时间:
2014-11-14 20:53:55
阅读次数:
940
Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space for a...
分类:
其他好文 时间:
2014-11-14 17:21:06
阅读次数:
250
一:起因
(1)学习IT的人,不论是写前端还是后台;有时候需要对数据进行清洗处理,例如,数据库日志分析。
(2)处理数据的大小由MB 到 GB,在到TB,最后导致处理的每一个文件都超过java jvm初始的heap
(3)对于单个文件比较小的,并行要求不高的数据,我们可以通过更改JVM的初始参数进行解决 —— 但是这并不是根本的解决办法。
(4)根本的解决办法是hadoop分布式系统下的M...
分类:
编程语言 时间:
2014-11-14 15:41:19
阅读次数:
201
按下向上箭头,飞船速度不是一直增加而且飞船移动的方向是固定的不是有角度的按下箭头飞船可以飞了,但是不减速加一个keyup handler就可以啦!可以一直加速,不按的时候也可以减速按下向下按钮飞船不喷火如何飞进飞出,完成啦阿拉了!!现在做导弹,导弹做完了,好像同时按住方向和空格,导弹反向不是很对,有...
分类:
其他好文 时间:
2014-11-14 15:33:39
阅读次数:
255
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant space. Y...
分类:
其他好文 时间:
2014-11-14 14:22:50
阅读次数:
164
Given two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size that is greater or equal...
分类:
其他好文 时间:
2014-11-14 09:15:31
阅读次数:
143
一般情况下,元素拥有默认的white-space:normal(自动换行,PS:不换行是white-space:nowrap),当录入的文字超过定义的宽度后会自动换行,但当录入的数据是一堆没有空格的字符或字母或数字(常规数据应该不会有吧,但有些测试人员是会这样子做的),超过容器宽度时就会把容器撑大,...
分类:
Web程序 时间:
2014-11-13 18:44:59
阅读次数:
183
今天在设置p标签时,为p标签设置了以下属性:p {line-height :70px; margin-left :10px; white-space :nowrap ;width :700px; text-overflow:ellipsis;}发现死活不起作用,连width都不起作用,然后加了个.....
分类:
其他好文 时间:
2014-11-13 16:26:18
阅读次数:
153
/**
?*?@brief?Codeforces?Round?#277?(Div.?2)?b
?*?@author?面码
?*?@created?2014/11/13?14:01
?*?@edited??2014/11/13?14:01
?*?@type?greedy
?*?@TODO?less?space?and?time?c...
分类:
其他好文 时间:
2014-11-13 14:51:24
阅读次数:
160