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-09-07 07:38:14
阅读次数:
315
Unique Paths:
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot is t...
分类:
其他好文 时间:
2014-09-06 22:37:14
阅读次数:
246
ZOJ 2587 Unique Attack
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1587
题意:N 台超级计算机连成一个网络。M 对计算机之间用光纤直接连在一起,光纤的连接是双向的。数据可以直接在有光纤直接连接的计算机之间传输,也可以通过一些计算机作为中转来传输。
有一群恐怖分子计划攻击网络。他...
分类:
其他好文 时间:
2014-09-06 21:19:53
阅读次数:
300
Follow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many unique paths would there be?An obstacle and empty space i...
分类:
其他好文 时间:
2014-09-06 05:27:32
阅读次数:
203
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.Each numb...
分类:
其他好文 时间:
2014-09-05 17:35:41
阅读次数:
227
在Web页中的每一个HTML元素都一个ID属性,ID作为其标示,在我们的普通理解中它应该是unique的。但是HTML元素的ID属性是可写的,这就造成了我们非常可能人为的使ID的反复。按么假设ID反复了怎么办呢?我们又怎么来给HTML元素弄一个唯一的标示呢? 因为IE对格式混乱(不完整的或有错嵌套....
分类:
编程语言 时间:
2014-09-05 15:59:31
阅读次数:
629
前言:引用某某的话——我是猪QAQ。。。。。题意就不复述了。解题思路:一般的建树,求和。离散化:用另一个数组sor[]记录原数组,sort一遍,用unique去重,用sor[]数组元素下标,代替原数组中元素,然后在sor[]数组里二分查找元素,last[]数组记录第i个元素上一次出现的位置。离线处理...
分类:
其他好文 时间:
2014-09-04 20:49:20
阅读次数:
323
primary key:主键约束unique key:唯一键约束相同点:唯一,既值都不能重复不同点: 1.一个表中只能有一个主键约束,但是唯一键约束可以有多个; 2.主键约束可以由一个或多个键组成,而唯一键约束只作用在一个键上; 3.主键作用的字段值不能为空,而唯一键作用的字段值可以为空。 主...
分类:
其他好文 时间:
2014-09-04 18:47:59
阅读次数:
216
使用mysql命令导入mysqldump生成的sql文件时,为了提高导入速度,往往需要修改dump文件,但是面对一个几十GB的文件,这事儿就太崩溃了,最快速的方法是这么做:( echo "SET AUTOCOMMIT=0;" echo "SET UNIQUE_CHECKS=0;" ...
分类:
数据库 时间:
2014-09-04 18:41:49
阅读次数:
298
题目地址:UVa 11572
这种方法以前接触过,定义两个指针,不断从左向右滑动,判断指针内的是否符合要求。
这个题为了能快速判断是否有这个数,可以用STL中的set。
代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#incl...
分类:
其他好文 时间:
2014-09-04 15:01:09
阅读次数:
205