码迷,mamicode.com
首页 >  
搜索关键字:permgen space    ( 18346个结果
HTML超出文本显示省略号...[text-overflow]
css: width: 350px; display: block; white-space:nowrap; overflow: hidden; text-overflow:ellipsis;...
分类:Web程序   时间:2014-11-19 10:59:41    阅读次数:173
LeetCode Solutions : Sort List
Sort a linked list inO(nlogn) time using constant space complexity.O(nlogn),我们可以第一时间想到常用的二路归并排序,快速排序和堆排序,其中快排和堆排只适用于线性表,即数组,故这道编程题毫无疑问用二路归并排序;* 1. 利用一...
分类:其他好文   时间:2014-11-19 07:24:33    阅读次数:225
Length of Last Word输出最后单词的字母个数
Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:其他好文   时间:2014-11-18 23:56:33    阅读次数:254
《C陷阱与缺陷》读书笔记
《C陷阱与缺陷》读书笔记1.编译器中的词法分析器负责将程序分解为一个个符号。C语言中,符号之间的空白(包括Space,Tab,Enter)都将被忽略,但一个符号的中间不能有空白,否则可能被解释成为另一个或几个符号。2.编译器将程序分解成符号的方法是从左到右逐个字符读入,如果该字符可能会组成一个符号,...
分类:其他好文   时间:2014-11-18 23:26:30    阅读次数:245
leetcode --- Linked List Cycle [Floyd's cycle-finding algorithm]
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 ListTwo Pointers''...
分类:其他好文   时间:2014-11-18 23:25:09    阅读次数:170
[Bhatia.Matrix Analysis.Solutions to Exercises and Problems]ExI.2.5
Show that matrices with distinct eigenvalues are dense in the space of all $n\times n$ matrices. (Use the Schur triangularisation)
分类:其他好文   时间:2014-11-18 13:12:08    阅读次数:174
swap的几点理解
一、什么是swap space(交换分区)?在Linux系统中,当物理内存满了才使用Swap空间。当系统需要更多的内存资源,并且物理内存已经满了,此时,内存中那些不活跃的pages被移动(move)到swap空间。虽然,交换分区能使设备使用更少的物理内存,但这并不表示可以替换物理内存。交换分区处于硬...
分类:其他好文   时间:2014-11-17 19:15:26    阅读次数:250
关于文本换行的问题
平时用的多的强制不换行:div{white-space:nowrap;width:***;text-overflow:ellipsis;overflow:hidden}white-space:normal 默认;nowrap强制在同一行内显示所有文本,直到文本结束或者遭遇 br 对象text-ove...
分类:其他好文   时间:2014-11-17 15:38:29    阅读次数:163
dlmalloc 2.8.6 源码详解(6)
基本上sys_alloc分为四个步骤, 1. 首先检查请求大小nb是否超出mmap_threshold的阈值. 如果是, 则放弃由分配器管理, 直接在mmap区开辟, 原因前面说过, 不再赘述. 2. 根据mspace设定及当前top space的使用情况, 向系统申请一块适当的内存. Dlmalloc按照下面的顺序由主到次开辟, 第一, 如果允许MORECORE, 则优先通过MORECORE开辟连续内存空间....
分类:其他好文   时间:2014-11-17 12:30:55    阅读次数:309
java.lang.OutOfMemoryError: Java heap space
报错信息:2014-11-17 10:22:51 org.apache.catalina.core.StandardWrapperValve invoke严重: Servlet.service() for servlet jsp threw exceptionjava.lang.OutOfMemor...
分类:编程语言   时间:2014-11-17 11:54:54    阅读次数:283
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!