二、SQL语言SQLstructurequerylanguage结构化查询语言SQL语句:DDL语句DML语句、DCL语句DDL--datadefinelanguage--create、alter、drop--数据定义语言DML--datamanagementlanguage--insert、update、delete--数据操作语言DCL--datacontrollanguage--grant、revoke--数据控制语..
分类:
数据库 时间:
2015-02-26 00:02:00
阅读次数:
528
Problem Description
There is going to be a party to celebrate the 80-th Anniversary of the Ural State University. The University has a hierarchical structure of employees. It means that the superviso...
分类:
其他好文 时间:
2015-02-25 18:44:53
阅读次数:
143
TautologyTime Limit:1000MSMemory Limit:65536KTotal Submissions:10061Accepted:3826DescriptionWFF 'N PROOF is a logic game played with dice. Each die ha...
分类:
其他好文 时间:
2015-02-25 15:23:10
阅读次数:
146
A linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each structure contains an integer key ...
分类:
其他好文 时间:
2015-02-25 09:06:58
阅读次数:
193
Erlang 的process 是虚拟机层面的进程,每个Erlang process 都包括一个 pcb(process control block), 一个stack 以及私有heap .这部分的姿势, 在各种论文中都有提到. 网上也有各种各样的解读,包括但不仅限于:1,http://fengch...
分类:
其他好文 时间:
2015-02-24 22:10:31
阅读次数:
288
1.问题描写叙述在开发中常常遇到代码块须要排版的情况,假设一行一行缩进就太out了,但在xcode中怎样实现还真不知道2.解决方法2.1选中须要排版的代码块2.2单击"Editor | Structure | Re-Indent"菜单项2.3看看是不是已经得到想要的结果了!!!
分类:
其他好文 时间:
2015-02-24 17:25:57
阅读次数:
130
相较普通的栈,题目要求多实现一个操作getMin(): 获取栈中最小的元素
我们维护两个栈:普通栈s保存所有元素, 最小栈min_s保存s中的“曾出现过”的最小元素的递减序列。
min_s.top()即为getMin()的返回值,标识普通栈s里的最小元素。
考虑压栈 3 4 5 2 3 1, 它们有如下表现:
push 3 4 5 2 3 1
s 3...
分类:
其他好文 时间:
2015-02-24 11:27:50
阅读次数:
133
写在前面的话:对于web开发,html完成网页的structure,css完成网页的presentation,js完成网页的behavior,今天就来说一说css,通过理解一些css的基础概念,能够更好的实现一些我们想要的功能。====正文开始===== 当通过各个html标签完成网页的结构(st....
分类:
Web程序 时间:
2015-02-23 16:40:02
阅读次数:
154
Two elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A solution using O(n) space is ...
分类:
其他好文 时间:
2015-02-23 15:26:34
阅读次数:
168
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.
get(key) - Get the value (will always be positive) of the key i...
分类:
系统相关 时间:
2015-02-17 09:13:46
阅读次数:
191