shell:外壳GUI:Gnome,KDE,xfceCLI:sh,csh,kshbash支持的引号:``:命令替换"":弱引用,变量替换‘‘:强引用,不完成变量替换文件名通配符:*:匹配任意长度的任意字符?:匹配任意单个字符[]:匹配指定范围内的任意单个字符[:space:]空白字符[:punct:]标点符号[:lower:]小写字母[:upp..
分类:
其他好文 时间:
2015-05-18 21:11:42
阅读次数:
123
转自:http://blog.csdn.net/huashnag/article/details/9357517Starting Oracle Universal Installer... Checking Temp space: must be greater than 80 MB. Actu.....
分类:
其他好文 时间:
2015-05-18 18:33:10
阅读次数:
132
官方是这样说的:Directory to use for "scratch" space in Spark, including map output files and RDDs that get stored on disk. This should be on a fast, local di...
分类:
其他好文 时间:
2015-05-18 18:19:14
阅读次数:
232
题目:Given two sorted integer arraysnums1andnums2, mergenums2intonums1as one sorted array.Note:You may assume thatnums1has enough space (size that is gr...
分类:
其他好文 时间:
2015-05-18 16:12:27
阅读次数:
87
向量 = vector向量空间 = vector space两个向量空间 U, V 之间的线性变换,可以用 matrix 表示。如果 U 的维数是 m,V 的维数是 n,则 $T: U \rightarrow V$的矩阵形式是 $m \times n$。矩阵应该正确地理解为:两个向量空间之间的线性变...
分类:
其他好文 时间:
2015-05-17 20:10:55
阅读次数:
208
Merge Sorted Array
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
Note:
You may assume that nums1 has enough space (size that is greater or equal...
分类:
其他好文 时间:
2015-05-17 18:44:52
阅读次数:
100
Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?
基本思路:
内层循环,使用...
分类:
其他好文 时间:
2015-05-17 16:51:36
阅读次数:
111
Given an unsorted array, find the maximum difference between the successive elements in its sorted form.Try to solve it in linear time/space.Return 0 ...
分类:
其他好文 时间:
2015-05-16 20:03:02
阅读次数:
116
@echo offecho please input phpCB url:set /p input=cd /d "E:\tools\phpCB\"phpCB --space-after-if --optimize-eol --space-after-switch --space-after-whil...
分类:
Web程序 时间:
2015-05-16 17:55:00
阅读次数:
274
堆溢出堆(Heap)是Java存放对象实例的地方。堆溢出可以分为以下两种情况,这两种情况都会抛出OutOfMemoryError:java heap space异常:1、内存泄漏内存泄漏是指对象实例在新建和使用完毕后,仍然被引用,没能被垃圾回收释放,一直积累,直到没有剩余内存可用。如果内存泄露,我们...
分类:
编程语言 时间:
2015-05-16 14:44:02
阅读次数:
167