vim配置文件 .vimrc
"winpos 5 5 " 设定窗口位置
"set lines=40 columns=155 " 设定窗口大小
set nu " 显示行号
set go= " 不要图形按钮
"color asmanian2 " 设置背景主题
set guifont...
分类:
系统相关 时间:
2014-11-21 18:54:02
阅读次数:
220
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:
其他好文 时间:
2014-11-21 15:57:41
阅读次数:
227
1.ubuntu vim 一些基本的命令。 :set nu 或着 set number 设置行数:set nonu 取消行数ctrl+u 将屏幕上滚半页ctrl+d 将屏幕下滚半页ctrl+b 将屏幕上滚一页ctrl+f 将屏幕下滚一页h ...
分类:
系统相关 时间:
2014-11-21 15:40:40
阅读次数:
198
Is It A Tree?
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 22631
Accepted: 7756
Description
A tree is a well-known data structure that is either empty (nu...
分类:
其他好文 时间:
2014-11-20 20:25:15
阅读次数:
210
matplotlib,是python下著名的图形库,作文本处理,也可以画一些图来看看~ http://matplotlib.org/downloads.html 能画出下面的图形呢,这不仅是文本处理了,还有科学计算的部分了。不错不错。可以研究研究,这个R应该更强大~ 这个库还依赖: numpy,要先...
分类:
编程语言 时间:
2014-11-19 22:01:41
阅读次数:
244
vim /etc/vim/vimrcset nu " 显示行号 53 set novisualbell " 不要闪烁 54 set nocompatible "去掉讨厌的有关vi一致性模式,避免以前版本的一些bug和局限 55 " 显示中文帮助 56 if version >= 603 ...
分类:
系统相关 时间:
2014-11-19 18:30:52
阅读次数:
170
package ClassDemo02;public class ConstructorDemo { public static void main(String[] args) { //获取类对象有四种方法 Class c1=null; Class c2=null; Class c3=nu...
分类:
其他好文 时间:
2014-11-19 18:09:31
阅读次数:
237
matplotlib,numpy,scipy是做数据挖掘的基本python库,在安装时我碰到了不少麻烦,尤其是在python 3.4中。 按照如下顺序安装1,2,3,import matplotlib库出现问题时依次安装4,5,6可以解决问题。1、numpy-1.8.1-win32-super...
分类:
其他好文 时间:
2014-11-19 15:49:55
阅读次数:
235
python34 中绘图基本是matplotlib库,基于matplotlib库可以绘制基本的图形。 1、基本绘图 (1)点图(data:http://pan.baidu.com/s/1i3L0UDB) 1 import matplotlib.pyplot as plt 2 import m...
分类:
其他好文 时间:
2014-11-19 15:40:15
阅读次数:
264