Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exampl...
分类:
其他好文 时间:
2014-06-28 14:19:44
阅读次数:
232
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Analysis: typical Runner Technique. 一次过 1 ...
分类:
其他好文 时间:
2014-06-28 13:44:51
阅读次数:
164
Given a linked list, return the node where the cycle begins. If there is no cycle, return null.Follow up:Can you solve it without using extra space?一次...
分类:
其他好文 时间:
2014-06-28 13:38:14
阅读次数:
171
2014-06-20 BaoXinjianPLSQL常用方法大全1.ASCII返回与指定的字符对应的十进制数;SQL> select ascii('A') A,ascii('a') a,ascii('0') zero,ascii(' ') space fromdual; Aa ZERO SPACE-...
分类:
数据库 时间:
2014-06-23 08:36:09
阅读次数:
3011
问题:主要是2个内存溢出的错误。首先是:java.lang.OutOfMemoryError: Java heap space其次是:java.lang.OutOfMemoryError: PermGen space最终解决办法【我是4G内存,请适当修改大小】:【Windows】在catalina....
分类:
其他好文 时间:
2014-06-23 06:34:12
阅读次数:
205
测试使用agentd监听获取数据。服务端的安装可以查看http://blog.chinaunix.net/space.php?uid=25266990&do=blog&id=3380929下载http://www.zabbix.com/downloads/2.0.3/zabbix_agents_2....
分类:
系统相关 时间:
2014-06-23 06:30:18
阅读次数:
261
tomcat的webapp下放了多个应用,当tomcat启动时会出现perm区内存溢出的报错:Exception in thread "portalMessageListener-444" java.lang.OutOfMemoryError: PermGen space解决方案:增加catalin...
分类:
其他好文 时间:
2014-06-23 00:57:37
阅读次数:
208
Given an index k, return the
kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only
O(k) extra space?
...
分类:
其他好文 时间:
2014-06-22 21:31:26
阅读次数:
214
用ant打包一个比较大的项目的时候,遇到OutOfMemory的问题,求助于Google和百度,网上的解决方案很多,但是个人觉得不够详细全面,我的问题需要综合两种方法才解决。把方案记下来,以期帮助大众点滴。
错误类型
Ant编译任务报错OutOfMemoryError,提示信息显示是Java Heap Space。
解决方案
综合网上的两种方法,我的需要两个都用。分析一下,无非就是Java...
分类:
其他好文 时间:
2014-06-22 21:02:49
阅读次数:
196
Determine whether an integer is a palindrome. Do this without extra space.
思路:若使用【Leetcode】Reverse
Integer 的方法,判断反转后的整数是否与原整数相同,则可能出现溢出情况;又因为题目要求不适用额外空间,可以之间对比整数第一个与最后一个数的值,再依次类推。
class Solution {...
分类:
其他好文 时间:
2014-06-22 20:43:56
阅读次数:
187