码迷,mamicode.com
首页 >  
搜索关键字:space    ( 18273个结果
多个项目MyEclipse中启动出现OutOfMemoryError: PermGen space如何解决
在MyEclipse中启动程序运行,报错java.lang.OutOfMemoryError: PermGen space应该怎么办?这是eclipse 内存不够的原因。 PermGen space的全称是Permanent Generation space,是指内存的永久保存区域, 这块内存主要是
分类:系统相关   时间:2016-02-14 16:57:17    阅读次数:211
【CSS笔记】使文字在一行显示,超出部分用省略号显示
CSS代码: text-overflow:ellipsis; overflow:hidden; white-space:nowrap; 说明: text-overflow:用来设置是否使用一个省略标记(···)标示对象内文本的溢出。 white-space:nowrap;强制文本在一行内显示。 ov
分类:Web程序   时间:2016-02-11 15:43:11    阅读次数:381
LeetCode Wiggle Sort
原题链接在这里:https://leetcode.com/problems/wiggle-sort/ 当 i 是奇数时,若nums[i] < nums[i-1], 互换。 当 i 是偶数时,若nums[i] > nums[i-1], 互换。 Time Complexity: O(n). Space:
分类:其他好文   时间:2016-02-11 11:08:52    阅读次数:150
[LeetCode] Reverse Words in a String II
Given an input string, reverse the string word by word. A word is defined as a sequence of non-space characters.The input string does not contain lead
分类:其他好文   时间:2016-02-11 07:55:12    阅读次数:210
algorithm@ find kth smallest element in two sorted arrays (O(log n time)
The trivial way, O(m + n): Merge both arrays and the k-th smallest element could be accessed directly. Merging would require extra space of O(m+n). Th
分类:其他好文   时间:2016-02-08 04:53:47    阅读次数:381
HDU 1240 Asteroids!(BFS)
题目链接 Problem Description You're in space.You want to get home.There are asteroids.You don't want to hit them. Input Input to this problem will consist
分类:其他好文   时间:2016-02-07 17:30:11    阅读次数:216
SQL server语句练习
相关表:<span style="white-space:pre">create table DEPT ( <span style="white-space:pre"> </span>deptno int not null primary key, <span style="white-space:
分类:数据库   时间:2016-02-07 17:28:51    阅读次数:288
IntelliJ IDEA的Maven项目在修改时报java.lang.OutOfMemoryError: PermGen space异常
什么也不说了---内存溢出,遇见太多回了,下面是解决方式: 1.在项目设置中新建Maven,然后设置VM: 2. 在pom.xml添加下面2个插件,一个是jrebel的,一个是jetty的 <build> <finalName>shuyangyang</finalName> <plugins> <p
分类:编程语言   时间:2016-02-07 09:42:30    阅读次数:2406
Java [Leetcode 234]Palindrome Linked List
题目描述: Given a singly linked list, determine if it is a palindrome. Follow up:Could you do it in O(n) time and O(1) space? 解题思路: 使用O(n)的时间复杂度及O(1)的时间复杂
分类:编程语言   时间:2016-02-06 22:15:19    阅读次数:177
pycharm快捷键
PyCharm Default Keymap PyCharm3.0默认快捷键(翻译的) 1、编辑(Editing) Ctrl + Space 基本的代码完成(类、方法、属性) Ctrl + Alt + Space 快速导入任意类 Ctrl + Shift + Enter 语句完成 Ctrl + P
分类:其他好文   时间:2016-02-06 14:20:50    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!