码迷,mamicode.com
首页 >  
搜索关键字:number    ( 26994个结果
LeetCode Combination Sum II
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 number in C may only be used once in the combination.N...
分类:其他好文   时间:2015-02-15 15:10:36    阅读次数:168
SQL Server 使用ROW_NUMBER()进行分页
代码示例:WITH domain AS(SELECT ROW_NUMBER() OVER(ORDER BY ID DESC) ids,* FROM dbo.DomainInfo)SELECT * FROM domain WHERE ids BETWEEN 1 AND 20 ORDER BY City...
分类:数据库   时间:2015-02-15 15:03:32    阅读次数:204
Codeforces Round #291 Div2 D
Problem An army of n droids is lined up in one row. Each droid is described by m integers a1,?a2,?...,?am, where ai is the number of details of the i-th type in this droid’s m...
分类:其他好文   时间:2015-02-15 13:33:42    阅读次数:155
JavaScript的隐式转换
原文:JavaScript的隐式转换JavaScript的数据类型分为六种,分别为null,undefined,boolean,string,number,object。object是引用类型,其它的五种是基本类型或者是原始类型。我们可以用typeof方法打印来某个是属于哪个类型的。不同类型的变量比...
分类:编程语言   时间:2015-02-15 10:39:35    阅读次数:242
hdu 1034 Eight 传说中的八数码问题。真是一道神题,A*算法+康托展开
Problem Description The 15-puzzle has been around for over 100 years; even if you don't know it by that name, you've seen it. It is constructed with 15 sliding tiles, each with a number from 1 to 15 on it, and all packed into a 4 by 4 frame with one tile m...
分类:编程语言   时间:2015-02-15 09:29:04    阅读次数:1023
171. Excel Sheet Column Number Leetcode Python
Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For example:     A -> 1     B -> 2     C -> 3  ...
分类:编程语言   时间:2015-02-15 09:26:19    阅读次数:178
POJ1316 Self Numbers
简单水题,不用打表,算出1~10000的self number,运用数组下标即可。Self NumbersTime Limit:1000MSMemory Limit:10000KTotal Submissions:21721Accepted:12231DescriptionIn 1949 the I...
分类:其他好文   时间:2015-02-15 00:55:27    阅读次数:231
[LeetCode]Largest Number
Given a list of non negative integers, arrange them such that they form the largest number. For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330. Note: The result m...
分类:其他好文   时间:2015-02-14 22:38:45    阅读次数:220
hdu3534 树形dp(求树中两点之间的最大距离)
http://acm.hdu.edu.cn/showproblem.php?pid=3534 Problem Description In the Data structure class of HEU, the teacher asks one problem: How to find the longest path of one tree and the number...
分类:其他好文   时间:2015-02-14 18:56:57    阅读次数:190
hdu5171---GTY's birthday gift
Problem Description FFZ’s birthday is coming. GTY wants to give a gift to ZZF. He asked his gay friends what he should give to ZZF. One of them said, ‘Nothing is more interesting than a number multise...
分类:其他好文   时间:2015-02-14 12:20:03    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!