1、映射Win键的诸多功能切换输入法,shift+alt本身已经支持了,所以Win+Space就不管了Win+Space映射为Fn+SpaceWin+E映射为Fn+EWin+R映射为Fn+RWin映射为Fn+L打开cmd设置 Fn+C,Win+R,C,Fn+G,M,Fn+G,D,Enter,Ente...
分类:
其他好文 时间:
2015-05-24 15:29:08
阅读次数:
245
Ititle:Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?思路:使用两个指针slow,fast。两个指针都从表头开始走,slow...
分类:
其他好文 时间:
2015-05-24 11:25:59
阅读次数:
148
Ititle:Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For...
分类:
其他好文 时间:
2015-05-23 23:53:42
阅读次数:
126
JVM内存组成结构JVM栈由堆、栈、本地方法栈、方法区等部分组成,结构图如下所示:1)堆所有通过new创建的对象的内存都在堆中分配,其大小可以通过-Xmx和-Xms来控制。堆被划分为新生代和旧生代,新生代又被进一步划分为Eden和Survivor区,最后Survivor由From Space和To ...
分类:
编程语言 时间:
2015-05-23 22:28:43
阅读次数:
210
工作时在本机测试环境发布一个web项目,Eclipse报了这个错误,网上搜罗一番,找到以下解决办法,记录一下。这块内存主要是被JVM存放Class和Meta信息的,Class在被Loader时就会被放到PermGen space中,它和存放类实例(Instance)的Heap区域不同,GC(Garb...
分类:
编程语言 时间:
2015-05-23 21:15:53
阅读次数:
158
1 // Computer Graphics: HW2 2 // 3D Rendering pipeline: 3 // Space Transformation and Polygon clipping use Sutherland-Hodgman Algorithm 4 5 ...
分类:
其他好文 时间:
2015-05-22 23:50:04
阅读次数:
316
2015-May-22In Oracle database, dropping a table don't free up the space directly. You'll need to disabled the DB recycle bin. So whenever we drop some...
分类:
其他好文 时间:
2015-05-22 19:11:19
阅读次数:
129
下面是我们遇到过的情况,如有错误或需要补充的内容,请直接修改。?
内存异常:
??java.lang.OutOfMemoryError:?PermGen?space
????》resin热部署,重新加载jar包,容易产生这种问题
????》持久代设...
分类:
编程语言 时间:
2015-05-22 17:20:36
阅读次数:
465
// A O(n^2) time and O(1) space program to find the longest palindromic substring#include // A utility function to print a substring str[low..high]voi...
分类:
其他好文 时间:
2015-05-22 00:28:09
阅读次数:
110