[leetcode]Unique Paths...
分类:
其他好文 时间:
2014-10-15 12:52:50
阅读次数:
170
A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ...
分类:
其他好文 时间:
2014-10-15 01:41:29
阅读次数:
266
一、几类数据完整性实体完整性:表中记录不重复(任何两条记录不全等)并且每条记录都有一个非空主键域完整性:表中字段值必须与字段数据类型、格式、有效范围相吻合参照完整性:不能引用不存在的值自定义完整性:根据特定业务领域定义的需求完整性保证数据完整性的几种常用方法约束(最常用)过程函数触发器实体完整性:p...
分类:
数据库 时间:
2014-10-15 01:00:19
阅读次数:
449
这个主要就是增加约束的以下几种约束 、并 一一列举:1.主键约束:主键约束:就是对一个列进行了约束,约束为(非空、不重复) 要对一个列加主键约束的话,这列必须满足条件非空,这样才可以约束 以下是代码要对一个列加主键,列名为id,表名为emp格式为: alter table 表格名称 add cons...
分类:
数据库 时间:
2014-10-15 00:53:59
阅读次数:
301
[leetcode]Given a collection of numbers that might contain duplicates, return all possible unique permutations....
分类:
其他好文 时间:
2014-10-14 12:20:08
阅读次数:
247
这题首先要明白的是,二叉搜索树的左子树和右子树都自成二叉搜索树。这种递归定义决定了,如果我知道从1到n - 1时,所有的二叉搜索树结构,那结点数为n的二叉搜索树也可以得到了。转换关系是这样的:对于一个含有n个结点的二叉搜索树,首先树根可以从i = 1~n变化,然后左右子树的结点数目分别是i - 1和...
分类:
其他好文 时间:
2014-10-13 23:02:57
阅读次数:
176
在Web页中的每一个HTML元素都一个ID属性,ID作为其标示,在我们的普通理解中它应该是unique的。但是HTML元素的ID属性是可写的,这就造成了我们非常可能人为的使ID的反复。按么假设ID反复了怎么办呢?我们又怎么来给HTML元素弄一个唯一的标示呢? 因为IE对格式混乱(不完整的或有错嵌套....
分类:
编程语言 时间:
2014-10-12 20:26:48
阅读次数:
196
Given n, generate all structurally unique BST's (binary search trees) that store values 1...n.For example,Given n = 3, your program should return all ...
分类:
其他好文 时间:
2014-10-12 19:12:18
阅读次数:
158
The set [1,2,3,…,n] contains a total of n! unique permutations.By listing and labeling all of the permutations in order,We get the following sequence ...
分类:
其他好文 时间:
2014-10-12 10:10:07
阅读次数:
217
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array whic...
分类:
其他好文 时间:
2014-10-12 06:27:07
阅读次数:
248