转自:http://my.oschina.net/u/947673/blog/277224# 解决出现此情况是因为你的boot分区是单独分区的,像我只给了100M,以前装ubuntu时没有出现,所以当出现这个提示时,很纳闷,发现了答案.为什么boot分区会满?主要是存放了一些老的linux im.....
分类:
其他好文 时间:
2014-10-09 13:48:13
阅读次数:
421
问题描述:
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
...
分类:
其他好文 时间:
2014-10-09 02:58:47
阅读次数:
175
最近在使用PyCharm3.0,感觉有必要把快捷键总结一下,在PyCharm 3.0\help目录下找到了ReferenceCard.pdf,顺手翻译了一下,留存一下。
PyCharm3.0默认快捷键
1、编辑(Editing)
Ctrl + Space
基本的代码完成(类、方法、属性)
Ctrl + Alt + Space
快速导入任意...
分类:
其他好文 时间:
2014-10-09 02:55:47
阅读次数:
214
搜索的时候无意中看见的这款基于ping的ICMP后门。于是到作者的github上看看,居然是阴文的,为了过级,只能强忍着看了,学生狗伤不起。还好比较简单易懂,正如简介说的一样:“PRISM is an user space stealth reverse shell backdoor, writ.....
分类:
系统相关 时间:
2014-10-09 01:06:07
阅读次数:
512
1.添加智能提示eclipse的代码提示是按”.”这个字符提示的,而如果想在其他的条件下触发,则需要按Alt + / 或者是 Ctrl + Space手动调用 (Ctrl + Space原先是Eclipse的默认快捷键,不过在中文环境下和输入法切换冲突)。preference-->java--...
分类:
系统相关 时间:
2014-10-09 00:29:47
阅读次数:
206
1:查询数据库的表空间的使用情况SELECT F.TABLESPACE_NAME, (T.TOTAL_SPACE - F.FREE_SPACE) "USED (MB)", F.FREE_SPACE "FREE (MB)", T.TOTAL_SPACE "TOTAL...
分类:
数据库 时间:
2014-10-08 18:33:45
阅读次数:
244
1.常规css方法——可以实现IE,Safari,chrome,opera浏览器下文字溢出省略号表示这是一段测试文字,主要是用来测试文字溢出后是否会用….zxx_text_overflow_1{width:27em; white-space:nowrap; text-overflow:ellipsi...
分类:
其他好文 时间:
2014-10-08 13:34:35
阅读次数:
442
Linked List CycleGiven a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?使用快慢指针,如果有循环两指针必定能相遇: 1 p...
分类:
编程语言 时间:
2014-10-08 04:32:34
阅读次数:
298
题目:Sort ListSort a linked list in O(n log n) time using constant space complexity看题目有两个要求:1)时间复杂度为O(nlogn);2)空间复杂度为常数,即不能增设额外的空间。满足这样要求的排序算法,我们首先想到快排,...
分类:
其他好文 时间:
2014-10-07 19:28:53
阅读次数:
245
Determine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie, -1)If you are thinki...
分类:
其他好文 时间:
2014-10-07 19:09:53
阅读次数:
180