码迷,mamicode.com
首页 >  
搜索关键字:unique constraint    ( 5568个结果
Combination Sum II
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Each number ...
分类:其他好文   时间:2015-01-22 13:06:40    阅读次数:206
Unique Binary Search Trees II
生成不相同的二叉树 /** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ c...
分类:其他好文   时间:2015-01-22 11:08:05    阅读次数:126
[leetcode]Longest Palindromic Substring
Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longes...
分类:其他好文   时间:2015-01-22 00:10:52    阅读次数:142
[LeetCode] Unique Binary Search Trees II dfs 深度搜索
Givenn, generate all structurally uniqueBST's(binary search trees) that store values 1...n.For example,Givenn= 3, your program should return all 5 uni...
分类:其他好文   时间:2015-01-21 23:56:18    阅读次数:228
【leetcode】Permutations II (middle)
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:其他好文   时间:2015-01-21 22:16:01    阅读次数:290
Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:其他好文   时间:2015-01-21 19:52:01    阅读次数:204
【leetcode】Combination Sum (middle)
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:其他好文   时间:2015-01-21 14:53:00    阅读次数:110
LoadRunner之Paramater在负载测试中的数据生成规则
LoadRunner之Paramater在负载测试中的数据生成规则 前段时间在做性能测试的时候,基于业务的需求,使用到了Unique Number的参数类型。 脚本的业务是注册以alien开头,后面接数字的用户帐号,填写相关帐号信息、提交企业信息进行审核。 其中用户帐号是alien开头拼接一个...
分类:其他好文   时间:2015-01-21 01:12:36    阅读次数:275
[C++]LeetCode: 114 Permutation Sequence(返回第k个阶乘序列——寻找数学规律)
题目: 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 (ie, for n = 3): "123""132""213"...
分类:编程语言   时间:2015-01-20 22:19:05    阅读次数:209
Permutation Sequence
The set[1,2,3,…,n]contains a total ofn! unique permutations.By listing and labeling all of the permutations in order,We get the following sequence (ie...
分类:其他好文   时间:2015-01-20 17:47:21    阅读次数:135
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!