Linux下编程难免要开启多个vim共同编辑同一个文件,这时再次保存就会出现:swap file "*.swp" already exists![O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:原因:使用...
分类:
其他好文 时间:
2014-08-12 00:19:03
阅读次数:
675
Given a sorted linked list, delete all duplicates such that each element appear only once.
For example,
Given 1->1->2,
return 1->2.
Given 1->1->2->3->3, return 1->2->3.
删除排序链表中重复的节点,删除操作...
分类:
其他好文 时间:
2014-08-11 18:01:22
阅读次数:
243
Problem Description
Recently, Shua Shua had a big quarrel with his GF. He is so upset that he decides to take a trip to some other city to avoid meeting her. He will travel only by air and he can g...
分类:
其他好文 时间:
2014-08-11 17:48:42
阅读次数:
353
Description
0 s, 1 s and ? Marks
Given a string consisting of 0, 1 and ? only, change all the
? to 0/1, so that the size of the largest group is minimized. A group is a subs...
分类:
其他好文 时间:
2014-08-11 11:57:42
阅读次数:
197
How to choose q() to sample theta? Usally gausian, for the parameter u and sigma, we can get from cross validation.Importance sampling can only work o...
分类:
其他好文 时间:
2014-08-11 11:47:22
阅读次数:
171
android 采用ScrollView布局时出现异常:ScrollView can host only one directchild。主要是ScrollView内部只能有一个子元素,即不能并列两个子元素,所以需要把所有的子元素放到一个LinearLayout内部或RelativeLayou...
分类:
其他好文 时间:
2014-08-11 11:42:22
阅读次数:
188
【Description】
A queue is a collection that implements the first-in-first-out protocal. This means that the only accessiable object in the collection in the first one that was inserted. The most commo...
分类:
其他好文 时间:
2014-08-10 21:43:10
阅读次数:
236
InnoDB存储引擎可以避免read-only的事务写transaction id(trx_id属性)的开销。transaction id只有在一个事务中有写操作或者上了写锁的事务(比如select ...for update)中才需要.不写transaction id能大大降低MySQL查询或者....
分类:
数据库 时间:
2014-08-10 15:30:50
阅读次数:
256
Spark特别适用于多次操作特定的数据,分mem-only和mem & disk。其中mem-only:效率高,但占用大量的内存,成本很高;mem
& disk:内存用完后,会自动向磁盘迁移,解决了内存不足的问题,却带来了数据的置换的消费。Spark常见的调优工具有nman、Jmeter和Jprofile,以下是Spark调优的一个实例分析:
1、场景:精确客户群
对一个容量为300g的客...
分类:
其他好文 时间:
2014-08-09 23:19:39
阅读次数:
301
sigslot is a head only signal slot lib,written by Sarah Thompson.原始仓库是http://sourceforge.net/projects/sigslot/文档是http://sigslot.sourceforge.net/sigslo...
分类:
编程语言 时间:
2014-08-09 23:09:59
阅读次数:
500