Summary RangesGiven a sorted integer array without duplicates, return the summary of its ranges.For example, given[0,1,2,4,5,7], return["0->2","4->5",...
分类:
编程语言 时间:
2015-06-26 12:26:22
阅读次数:
214
leetcode 228: Summary Ranges
python, java, c++...
分类:
其他好文 时间:
2015-06-26 06:53:55
阅读次数:
204
LVSNAT模式:Summary:普通的NAT模式为DNAT,即只更改目的地址,不改源端口。LVS在转发报文时,将Client的源IP透传给Server,类似于透明传输。优点:1.可提供从不同源地址访问的访问。2.RS不占用公网IP。3.可以更改访问目的地址的端口,DR及Tun模式不可以。缺点:1....
分类:
其他好文 时间:
2015-06-24 10:54:27
阅读次数:
169
The short summary of the article is that CAP isn’t “C, A, or P, choose
two,” but rather “When P happens, choose A or C.”Partitions, like death and taxes, are unavoidable – think of machine
death as j...
分类:
其他好文 时间:
2015-06-23 20:09:49
阅读次数:
115
Apr 30, 2010.Summary:With this library .NET applications can control a wide variety of MessageBox dialog settings.That includes adjusting initial posi...
分类:
Web程序 时间:
2015-06-19 21:36:50
阅读次数:
278
进程间通信:
1使用管道进行进程间的通信
(1)有名管道
mkfifo xxx.pipe
(2) 无名管道
int pipe(int pipefd[2]);
文件描述符 pipefd[0]代表读端,pipefd[1]代表写端
2. 使用共享内存实现进程间的通信
步骤:
获取key值,使用ftok函数
创建、获取共享内存,使用shmget函数
接挂共享内存,使用shma...
分类:
其他好文 时间:
2015-06-17 15:29:55
阅读次数:
133
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not(...
分类:
Web程序 时间:
2015-06-15 18:09:47
阅读次数:
964
1、GridControl赋值:this.GridControl1.DataSouce=dt; 2、GridContro总合计及分组合计: 常规总合计直接RunDesigner-Group Summary Items DisplayFormat 设置显示格式如:{0:P}表示显示为百分号模式。如数据...
分类:
其他好文 时间:
2015-06-12 20:45:18
阅读次数:
641
1. 文件管理
1,1 fcntl 函数
(1)F_SETLKW
功能与F_SETLK类似,所不同的是加不上锁并不是返回失败而是等待,直到可以加上该锁为止
(2)F_GETLK
表示试图将第三个参数描述的锁加到第一的参数指定的文件上如果能加上锁但不会去加,而是
将该锁的类型改为F_UNLCK;如果不能加上锁,则将文件中已经存在的锁信息通过第三个参数带出来,
并且将给文件进行加锁的进...
分类:
其他好文 时间:
2015-06-10 08:55:17
阅读次数:
111
阅读目录对象大小(Object sizes) 对象的占用总内存树 支配对象(Dominators) V8介绍 Chrome 任务管理器 通过DevTools Timeline来定位内存问题 内存回收 拍一个快照 清除快照 切换快照视图 通过不同颜色区分对象 Summary view(概要视图) Co...
分类:
编程语言 时间:
2015-06-09 19:33:10
阅读次数:
213