Remove Duplicates from Sorted Array I
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 an...
分类:
其他好文 时间:
2014-10-11 16:19:56
阅读次数:
140
http://www.unitymanual.com/home.php?mod=space&uid=2452&do=blog&id=420using UnityEngine;using System.Collections;public class TestSprite : MonoBehaviou...
分类:
编程语言 时间:
2014-10-11 15:01:35
阅读次数:
266
大家都知道,objective-c是c语言的超集,所以温故知新系列的每一篇文章就先从c语言开始说起 ![c语言数据类型][1] [1]: http://static.oschina.net/uploads/space/2014/1011/105242_Vs92_660766.jpg 除了以上的数据...
分类:
其他好文 时间:
2014-10-11 13:09:55
阅读次数:
188
题目:Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space fo...
分类:
其他好文 时间:
2014-10-10 20:19:34
阅读次数:
176
white-space:nowrap; text-overflow:ellipsis; overflow: hidden; clip [不显示省略标记(...),而是简单的裁切], ellipsis [当对象内文本溢出时显示省略标记(...)。
分类:
Web程序 时间:
2014-10-10 19:30:24
阅读次数:
214
错误代码:
java.lang.OutOfMemoryError: PermGen space
原因分析:
myeclipse或tomcat的内容分配的不够用,启动失败
解决方法:
1.找到tomcat安装目录的这个文件\apache-tomcat-7.0.41\bin\catalina.bat,打开,在里面找到这句:rem ----- Execute The Requested Command 。在这句下面添加:set JAVA_OPTS=%JAVA_OPTS% -Xms256m -Xmx1024m ...
分类:
编程语言 时间:
2014-10-09 20:48:47
阅读次数:
212
编写Python或Ruby代码的时候,比较在意行末空格,估计是代码洁癖、强迫症使然,看到多余的行末空格就浑身不自在。Sublime Text 2神器要解决这个问题简直就是小意思,在Settings - User中添加以下设置行:"trim_trailing_white_space_on_save":...
分类:
其他好文 时间:
2014-10-09 18:30:37
阅读次数:
170
一、内存溢出类型 1、java.lang.OutOfMemoryError: PermGen space JVM管理两种类型的内存,堆和非堆。堆是给开发人员用的上面说的就是,是在JVM启动时创建;非堆是留给JVM自己用的,用来存放类的信息的。它 和堆不...
分类:
编程语言 时间:
2014-10-09 17:34:18
阅读次数:
203
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 equal to m + n) to hold additional elements fro...
分类:
其他好文 时间:
2014-10-09 15:58:28
阅读次数:
232
The key is to use two constant space(32 bits) to store how many times 1 or 0 showed up in the bit i. If times of 1 in bit i is not the multiple of 3, then the unique value's bit i is 1. Otherwise the ...
分类:
其他好文 时间:
2014-10-09 15:29:08
阅读次数:
243