码迷,mamicode.com
首页 >  
搜索关键字:permgen space    ( 18346个结果
内存异常 PermGen space
tomcat:java.lang.outofmemoryerror permgen space1、设置tomcat6w.exe在Java Options添加:-XX:PermSize=256m-XX:MaxPermSize=512m2、在环境变量里面配置:环境变量:-Xms512m -Xmx1024...
分类:其他好文   时间:2014-06-28 17:45:42    阅读次数:173
KEIL C 出现ADDRESS SPACE OVERFLOW的解决办法
ERROR L107: ADDRESS SPACE OVERFLOW用KEIL选用small模式编译一个程序时老时出错,信息如下。 *** ERROR L107: ADDRESS SPACE OVERFLOW ... ... Program Size: data=217.6 xdata=0 code...
分类:其他好文   时间:2014-06-28 15:26:20    阅读次数:175
Leetcode SortList
Sort a linked list inO(nlogn) time using constant space complexity.本题利用归并排序即可归并排序的核心是将两部分合成一部分,故开始要将链表分成两部分,利用快慢两个指针,当快指针跑到链表尾部时,慢指针恰好在中间,故可以将链表分成两部分然...
分类:其他好文   时间:2014-06-21 12:20:11    阅读次数:188
Leetcode Word Break
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-21 07:30:55    阅读次数:212
[LeetCode] Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for...
分类:其他好文   时间:2014-06-20 21:48:33    阅读次数:254
LeetCode解题报告:Linked List Cycle && Linked List Cycle II
Linked List CycleGiven a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Linked List Cycle IIGiven...
分类:其他好文   时间:2014-06-20 20:46:58    阅读次数:245
[LeetCode] Merge Sorted Array
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 equa...
分类:其他好文   时间:2014-06-20 15:25:50    阅读次数:225
css实现强制不换行/自动换行/强制换行
强制不换行 div{ white-space:nowrap; } 自动换行 div{ word-wrap: break-word; word-break: normal; } 强制英文单词断行 div{ word-break:break-all; } ========================...
分类:Web程序   时间:2014-06-18 10:47:41    阅读次数:274
UML的基础元件之行为元件
Behavioral things are the dynamic parts of UML models. These are the verbs of a model, representing behavior over time and space. In all, there are three primary kinds of behavioral things.   行...
分类:其他好文   时间:2014-06-17 21:47:37    阅读次数:315
Palindrome Number
题目 Determine whether an integer is a palindrome. Do this without extra space. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of converting the integer to ...
分类:其他好文   时间:2014-06-17 16:12:39    阅读次数:226
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!