码迷,mamicode.com
首页 >  
搜索关键字:permgen space    ( 18346个结果
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?runner 问题,注意while循环的条件。 1 /** 2 * Definit....
分类:其他好文   时间:2015-03-18 06:27:32    阅读次数:114
列表字体css
white-space:nowrap;text-overflow:ellipsis; -o-text-overflow:ellipsis;overflow:hidden;
分类:Web程序   时间:2015-03-18 01:07:26    阅读次数:147
leetcode题解||Palindrome Number问题
problem: Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative integers be palindromes? (ie, -1) If you are thinking of conv...
分类:其他好文   时间:2015-03-17 22:00:59    阅读次数:163
java.lang.OutOfMemoryError: Java heap space错误及处理办法
以下是从网上找到的关于堆空间溢出的错误解决办法:java.lang.OutOfMemoryError: Java heap space===================================================使用Java程序从数据库中查询大量的数据时出现异常:java.l...
分类:编程语言   时间:2015-03-17 17:49:34    阅读次数:216
css+div通用兼容性代码最全
你可以在css开头加入 *html{padding:0px} http://chengbao.feizhuliu.in/home.php?mod=space&uid=1&do=blog&quickforward=1&id=268 CSS+DIV 兼容性问题 浏览器兼容代码: 浏览器 符号 IE6.....
分类:Web程序   时间:2015-03-17 17:22:50    阅读次数:149
[LeetCode]Sort List
Sort a linked list in O(n log n) time using constant space complexity. 这道题是要求对单链表进行排序,有个O(nlogn)的时间复杂度的要求。我的想法是采取类似头插法的方式,遍历链表结点,设3个指针,min指向当前链表中的最小值,max指向当前链表中的最大值,cur指向前一插入的值。 min , max , cur 初始时都指向第...
分类:其他好文   时间:2015-03-17 15:58:02    阅读次数:181
LeetCode Length of Last Word
1. 题目Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last word does not exist, return 0.Note: A word is defi...
分类:其他好文   时间:2015-03-17 15:52:52    阅读次数:131
[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 another array, you must do this in place wit...
分类:其他好文   时间:2015-03-17 15:49:28    阅读次数:128
zookeeper 基本概念
zookeeper 基本概念 The ZooKeeper Data Model ZooKeeper has a hierarchal name space, much like a distributed file system. The only difference is that each node in the namespace can have data associat...
分类:其他好文   时间:2015-03-17 14:28:05    阅读次数:120
IntelliJ IDEA Default Keymap
编辑Ctrl + Space Basic code completion (the name of any class,method or variable)Ctrl + Shift + Space Smart code completion (filters the list of methods...
分类:其他好文   时间:2015-03-17 12:14:10    阅读次数:165
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!