其他好文[总排行] [月排行] [周排行] [日排行]
Given a string S and a string T, count the number of distinct subsequences of T in S.A subsequence of a string is a new string which is formed from th...
分类:其他好文 时间:2014-05-12 09:37:51 阅读:287
Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.public class Solution { public String int...
分类:其他好文 时间:2014-05-10 20:31:10 阅读:335
分类:其他好文 时间:2014-05-12 09:41:52 阅读:170
贪心算法1.性质贪心算法通过一系列的选择来得到问题的解。它所做的每一个选择都是当前状态下局部的最好选择,即贪心选择。贪心选择的一般特征:贪心选择性质和最优子结构性质。在动态规划算法中,每步所作的选择往往依赖于相关子问题的解。因而只有在解出相关子问题后,才能作出选择。而在贪心算法中,仅在当前状态下作出...
分类:其他好文 时间:2014-05-12 09:40:53 阅读:184
static自然布局、fixed相对于浏览器窗口,比较容易理解。absolute、relative需要通过一些例子来加强理解!
分类:其他好文 时间:2014-05-12 09:42:55 阅读:380
原谅我这个小白到现在才搭建好apache....之前都是无限次的 cd mysite(第一个django project啊,就没变过= =),python manage.py runserver然后我就可以在127.0.0.1:8000中访问了....我原以为ubuntu下的软件永远是sudo ap...
分类:其他好文 时间:2014-05-12 09:50:59 阅读:478
题目描述:一个正整数有可能可以被表示为n(n>=2)个连续正整数之和,如:15=1+2+3+4+5 15=4+5+6 15=7+8请编写程序,根据输入的任何一个正整数,找出符合这种要求的所有连续正整数序列。输入数据:一个正整数,以命令行参数的形式提供给程序。输出数据:在标准输出上打印出符合题目...
分类:其他好文 时间:2014-05-12 09:52:01 阅读:276
undefined, null, -0, 0, NaN, ""
分类:其他好文 时间:2014-05-12 09:53:03 阅读:158
class Solution {public: int maximalRectangle(vector > &matrix) { int rows = matrix.size(); if (rows == 0) return 0; int cols =...
分类:其他好文 时间:2014-05-12 09:54:05 阅读:250
【makefile的规则】 在讲述这个makefile之前,还是让我们先来粗略地看一看makefile的规则。 target可以是一个object file(目标文件),也可以是一个执行文件,还可以是一个标签(label)。对于标签这种特性,在后续的“伪目标”章节中会有叙述。 prereq...
分类:其他好文 时间:2014-05-12 09:56:08 阅读:327
1147393147394147395148452
上一页1484515下一页
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!