---正在执行的 select?a.username,?a.sid,b.SQL_TEXT,?b.SQL_FULLTEXT ??from?v$session?a,?v$sqlarea?b? where?a.sql_address?=?b.address? ---执行过的 select?b.SQL_TEXT,b.FIRST_LOAD_TIME,b....
分类:
数据库 时间:
2015-01-04 17:24:06
阅读次数:
207
#include namespace First{ int i = 0;}namespace Second{ int i = 1; int j = 2; namespace Internal { struct Stu { ...
分类:
其他好文 时间:
2015-01-04 16:41:25
阅读次数:
127
Given numRows, generate the first numRows of Pascal's triangle.
For example, given numRows = 5,
Return
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
Pascal的每一层以1开始和结束 并且自第二位起 其值...
分类:
其他好文 时间:
2015-01-04 15:21:19
阅读次数:
111
Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. Update (2014-11-02):The s...
分类:
其他好文 时间:
2015-01-04 07:37:15
阅读次数:
209
A zero-indexed array A consisting of N integers is viven. We visit the indexs of the array in the following way. In the first step we visit the index ...
分类:
其他好文 时间:
2015-01-04 06:23:47
阅读次数:
206
First Missing PositiveGiven an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Yo...
分类:
其他好文 时间:
2015-01-03 23:39:20
阅读次数:
166
英 语 缩 写 (四)英 语 缩 写 (四) 1:英语日期缩写1st=first,2nd=second,3rd=third,4-10都以th结尾4th,5th,6th,7th,8th,9th,10th.11,12,13因为它们的英语是eleven,twelve,thirteen,所以缩写是11th=...
分类:
其他好文 时间:
2015-01-03 22:17:46
阅读次数:
207
Head First Design Pattern 读书笔记(3) Decorator Pattern 装饰者模式 ========= ##Decorator Pattern 类图 ![装饰者模式类图][2] ##定义 装饰者模式:通过让组件类与装饰者类实现相同的接口,装饰类可以在不修...
分类:
其他好文 时间:
2015-01-03 21:12:09
阅读次数:
292
栈是一种只允许在一端进行插入或删除操作的线性表.其特点为:先进后出(FILO)/后进先出(LIFO); 栈 VS. 队列 栈和队列都是动态集合, 但在栈中, 可以去掉的是最近插入的那一个,:栈实现了一种后进先出(last-in, first-out)的策略;类似的, 在队列中, 可以去掉的元素总是在集合中存在时间最长的那一个:队列实现了先进先出(first-in, first-out)的策略...
分类:
其他好文 时间:
2015-01-03 21:09:30
阅读次数:
297