码迷,mamicode.com
首页 >  
搜索关键字:space    ( 18273个结果
java.lang.OutOfMemoryError: PermGen space及其解决方法
PermGen space的全称是Permanent Generation space,是指内存的永久保存区域OutOfMemoryError: PermGen space从表面上看就是内存益出,解决方法也一定是加大内存。如果eclipse是安装的tomcat的插件,那么打开eclipse =》Wi...
分类:编程语言   时间:2015-08-19 23:02:05    阅读次数:114
expand
expand命令文件过滤分割与合并expand命令用于将文件的制表符(TAB)转换为空白字符(space),将结果显示到标准输出设备。语法expand(选项)(参数)选项-t<数字>:指定制表符所代表的空白字符的个数,而不使用默认的8。参数文件:指定要转换制表符为空白的文件。
分类:其他好文   时间:2015-08-19 17:31:54    阅读次数:101
[LeetCode] Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space? 关于cycle,第一个想法自然就是用hashmap来做。注意用hashmap.p....
分类:其他好文   时间:2015-08-19 16:32:14    阅读次数:126
【LeetCode】141. Linked List Cycle
题目:Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?提示:首先,题目中要求'without using extra space',...
分类:其他好文   时间:2015-08-19 16:12:09    阅读次数:115
java vm args
这个问题主要还是由这个问题java.lang.OutOfMemoryError: Java heap space 引起的。第一次出现这样的的问题以后,引发了其他的问题。在网上一查可能是JAVA的堆栈设置太小的原因。跟据网上的答案大致有这两种解决方法:1、设置环境变量解决方法:手动设置Heap siz...
分类:编程语言   时间:2015-08-19 16:07:49    阅读次数:148
[leetcode] Palindrome Number
题目:Determine whether an integer is a palindrome. Do this without extra space.解题思路:循环取得首位和末尾,然后比较。解题心得:关于整数的处理有几个 运算需要熟记:一个整数:%10 得个位 , %100 的后两位 就是个位和...
分类:其他好文   时间:2015-08-19 10:58:14    阅读次数:122
【转】JVM 堆内存设置原理
堆内存设置原理JVM堆内存分为2块:PermanentSpace 和 Heap Space。Permanent 即持久代(Permanent Generation),主要存放的是Java类定义信息,与垃圾收集器要收集的Java对象关系不大。Heap = { Old + NEW = {Eden, fr...
分类:其他好文   时间:2015-08-19 09:22:23    阅读次数:189
【LeetCode-面试算法经典-Java实现】【139-Word Break(单词拆分)】
【139-Word Break(单词拆分)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary wo...
分类:编程语言   时间:2015-08-19 07:06:04    阅读次数:528
【LeetCode】141 - Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Hide Tags:Linked ListTwo PointersHide Simi...
分类:其他好文   时间:2015-08-18 18:52:17    阅读次数:98
css 基础知识
line-height:使用百分比设置行间距在大多数浏览器中默认行高大约是 110% 到 120%。使用像素值设置行间距在大多数浏览器中默认行高大约是 20px。使用数值来设置行间距默认行高大约是 1white-space: nowrap来自:w3school在元素中禁止文本折行
分类:Web程序   时间:2015-08-18 18:37:00    阅读次数:151
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!