复制、粘贴:CTRL+C复制被选择的项目到剪贴板CTRL+V粘贴剪贴板中的内容到当前位置CTRL+X剪切被选择的项目到剪贴板Alt+ space + E + P
CMD 窗口快速粘贴关闭:CTRL+ W关闭Word、IE当前程序窗口(对Notepad,路径窗口不起作用)CTRL+ F4同上ALT+F...
from:http://bbs.csdn.net/topics/370040889全半角转换最tm的烦人,快捷键是shift+space,不小心按到,就各种不爽,系统看着是可以重新设置快捷键的,但是在设置那里,你设置好,点击应用,又变成shift+space了。。怎么能彻底的关闭?我用的搜狗输入法,...
【题目】
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 with constant memory.
For example,
Given input array A ...
分类:
其他好文 时间:
2014-05-18 18:25:19
阅读次数:
272
今天运行了一个比较大的程序,处理的数据达到126MB数据,将数据导入数据库中,用eclipse 来访问时候,总是出现java.lang.OutOfMemoryError:Java heap space的错误,上网查了一些资料,原来是堆栈溢出的状况,eclipse默认的情况下,堆栈的空间应该是64MB, 所以有时候处理的数据的时候,容易出现堆栈溢出的情况,下面总结了几种方法,解决这个问题。
...
分类:
编程语言 时间:
2014-05-18 15:53:30
阅读次数:
274
1.pre-defined function void funciton2.using
programmer-defined function a.declaration-- in main() or above main() in global
space b.definition -- just...
分类:
编程语言 时间:
2014-05-17 22:17:28
阅读次数:
268
Two elements of a binary search tree (BST) are
swapped by mistake.Recover the tree without changing its structure.Note:A
solution using O(n) space is ...
分类:
其他好文 时间:
2014-05-17 14:45:17
阅读次数:
290
shell中的输入的字符分为纯字符和元字符(特殊意义的字符meta)元字符:IFS:由<space>或<tab>或<enter>三者之一组成(我们常用space)。CR:由<enter>产生。=:设定变量。$:作变量或运算替换(请不要与shellprompt搞混了)。>:重导向stdout。<:重导向s..
分类:
其他好文 时间:
2014-05-15 12:47:54
阅读次数:
324
一、Java内存组成组成图堆(Heap)运行时数据区域,所有类实例和数组的内存均从此处分配。Java虚拟机启动时创建。对象的堆内存由称为垃圾回收器的自动内存管理系统回收。组成
组成 详解Young Generation即图中的Eden + From Space + To Space1.Eden存放新...
分类:
编程语言 时间:
2014-05-15 02:07:43
阅读次数:
320
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 List Cycle II在做这...
分类:
其他好文 时间:
2014-05-14 23:30:00
阅读次数:
399
【题目】
Determine whether an integer is a palindrome. Do this without extra space.
【题意】
题意判断一个整数是否是回文数
注意一下几点:
1. 不能用额外的空间
2. 负数不是回文数...
分类:
其他好文 时间:
2014-05-14 20:31:10
阅读次数:
298