Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that surrounded region...
分类:
其他好文 时间:
2015-06-11 07:01:04
阅读次数:
98
RMAN-08137WhendeletingarchivelogsevenwhenStreamsCAPTUREdoesnotrequirethem[ID1079953.1]InthisDocumentSymptomsChangesCauseSolutionReferencesSymptomsAppliesTo:11gR1-11gR2RMANisunabletodeletearchivelogsfromdatabaseeventhoughtheyarenotneededbyCAPTUREprocessanymo..
分类:
数据库 时间:
2015-06-10 12:31:32
阅读次数:
806
备忘录模式:
在不破换封装性的前提下,捕获一个对象的内部状态并将这个状态保存到对象外部,这样这个对象之后可以恢复到保存的状态。
Without violating encapsulation, capture and externalize an object’s internal state so that the object can be restored to this state la...
分类:
其他好文 时间:
2015-06-09 17:13:49
阅读次数:
136
#!/bin/bash## Command :vmstat,uptime#Capture_Stats - Gather System Performance Statistics#############################################################...
分类:
其他好文 时间:
2015-06-06 00:26:09
阅读次数:
119
Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's in that surrounded ...
分类:
其他好文 时间:
2015-06-06 00:14:31
阅读次数:
106
There are no interfaces on which a capture can be done.今天启动了Wireshark但是提示→There are no interfaces on which a capture can be done.右击→以管理员身份运行Ok
分类:
其他好文 时间:
2015-06-04 15:12:11
阅读次数:
117
写过c#之后,觉得c#里的lambda表达式和delegate配合使用,这样的机制用起来非常爽。c++11也有了lambda表达式,形式上有细小的差异。形式如下: c#:(input parameters) => {statement;} c++:[capture list](paramet...
分类:
编程语言 时间:
2015-06-02 21:32:43
阅读次数:
118
Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's in that surrounded ...
分类:
编程语言 时间:
2015-06-01 18:30:54
阅读次数:
168
lamda表达式是C++11中的新特征,说白了就是匿名函数。lambda表达式的具体形式如下:[capture](parameters)->return-type{body}其中, capture是需要用到的外部变量, parameters是函数参数,return-type是返回的类型(可省略).....
分类:
编程语言 时间:
2015-05-31 15:15:39
阅读次数:
163