歌手 Kate Voegele 是美国俄亥俄州的一位年轻创作型歌手,她会唱歌、会写歌、特别擅长弹吉他、还会弹钢琴。她是美国新生代歌手中的佼佼者。99 Times--KateVoegele So you seeYou’ve got me back again for moreAnd it seemsY...
分类:
其他好文 时间:
2014-08-31 13:10:31
阅读次数:
259
Caisa solved the problem with the sugar and now he is on the way back to home.
Caisa is playing a mobile game during his path. There are
(n?+?1) pylons numbered from 0 to
n in this game. The py...
分类:
其他好文 时间:
2014-08-30 21:46:50
阅读次数:
315
10.1using namespace std;int main(){ vector vec; int a; cin>>a; int v; while(cin>>v) vec.push_back(v); cout l; string a; ...
分类:
编程语言 时间:
2014-08-30 16:21:59
阅读次数:
203
ios点击产生波纹效果by 伍雪颖- (void)viewDidLoad{ [super viewDidLoad]; RippleView = [[UIView alloc] initWithFrame:(CGRect){0,0,300,300}]; RippleView.back...
分类:
移动开发 时间:
2014-08-29 19:54:58
阅读次数:
205
Cache 的write back和write through 收藏
为了保证cache和memory的数据一致性,通常有三种方法:
1〉write through:CPU向cache写入数据时,同时向memory也写一份,使cache和memory的数据保持一致。优点是简单,缺点是每次都要访问memory,速度比较慢。
2〉post write:CPU更新cache数据时,把更新...
分类:
其他好文 时间:
2014-08-29 18:19:28
阅读次数:
199
题目大意:n个矩形,将一个大矩形分成 n+1 块。矩形之间不重合,可是包括。求这n+1个矩形的面积思路分析:用线段树记录他们之间的父子关系。然后dfs 计算面积。当给出的矩形上边的时候,就要记录到该矩形的父亲去。#include #include #include #include #define ...
分类:
其他好文 时间:
2014-08-28 22:38:26
阅读次数:
357
send_keys(Keys.BACK_SPACE) 删除键(BackSpace)send_keys(Keys.SPACE) 空格键(Space)send_keys(Keys.TAB) 制表键(Tab)send_keys(Keys.ESCAPE) 回退键(Esc)send_keys(Keys.ENT...
分类:
其他好文 时间:
2014-08-28 18:04:05
阅读次数:
200
在oracle10g之前使用resetlogs打开数据库之后,之前的的备份就不能用于恢复了。即不能进行跨resetlogs时间点的恢复。所以要求执行完之后马上进行全库备份。
Oracle10g以后允许跨越resetlogs时间点进行完全或者不完全恢复。实验如下:
执行全库备份。
RMAN> back...
分类:
数据库 时间:
2014-08-28 09:38:19
阅读次数:
337
17.You configure AUTOBACKUP to ON in an RMAN session. When will RMAN back up the control file?
(Choose all that apply.)
A. When you run an RMAN BACKUP command
B. When you run an RMAN ALLOCATE comma...
分类:
其他好文 时间:
2014-08-28 00:53:58
阅读次数:
189