This is pretty simple.Just use three element to pretain the result; 1 class Solution { 2 public: 3 int climbStairs(int n) { 4 vector dp(3,...
分类:
其他好文 时间:
2015-03-18 10:15:49
阅读次数:
137
There are three methods to do it:1. recursive(use memory stack): (Time O(n), Space O(logn) 1 /** 2 * Definition for binary tree 3 * struct TreeNode .....
分类:
其他好文 时间:
2015-03-18 07:46:37
阅读次数:
117
There are a row of houses, each house can be painted with three colors red, blue and green. The cost of painting each house with a certain color is di...
分类:
其他好文 时间:
2015-03-18 06:28:29
阅读次数:
128
DescriptionYou've got arraya[1],?a[2],?...,?a[n], consisting ofnintegers. Count the number of ways to split all the elements of the array into three c...
分类:
其他好文 时间:
2015-03-17 14:02:57
阅读次数:
128
2015年3月13日20:00:55一、ls,cd,alias命令的介绍及用法二、目录结构三、Linux的常用快捷键一、首先看下ls这个命令ls(选项)(参数):用来显示目标列表,在Linux是使用率最高的命令,ls命令输出的信息可以进行彩色加亮显示,以区分不同类型的文件。-a:显示所有文件h或者目..
分类:
系统相关 时间:
2015-03-16 06:27:35
阅读次数:
220
sort3解题报告—— icedream61 博客园(转载请注明出处)--------------------------------------------------------------------------------------------------------------...
分类:
其他好文 时间:
2015-03-14 10:55:56
阅读次数:
119
To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C Programming Language, M - Mat...
分类:
其他好文 时间:
2015-03-14 10:48:30
阅读次数:
156
Calculate a + b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less t...
分类:
其他好文 时间:
2015-03-14 07:25:57
阅读次数:
135
3Sum Closest问题:Given an arraySofnintegers, find three integers inSsuch that the sum is closest to a given number, target. Return the sum of the three ...
分类:
其他好文 时间:
2015-03-13 18:23:29
阅读次数:
159
Given an array of integers, every element appears three times except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory?...
分类:
其他好文 时间:
2015-03-12 22:35:49
阅读次数:
164