代码如下,注释部分为递归版本,在OJ上运行超时,在本地正常,所以选择迭代版本。
代码如下:#include
#include
using namespace std;class Solution {
public:
int rob(vector& nums) {
int hasFinal, exceptFinal;...
分类:
其他好文 时间:
2015-07-07 09:31:45
阅读次数:
87
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent house...
分类:
其他好文 时间:
2015-07-06 18:11:40
阅读次数:
171
After robbing those houses on that street, the thief has found himself a new place for his thievery so that he will not get too much attention. This t...
分类:
其他好文 时间:
2015-07-03 23:15:36
阅读次数:
158
House Robber IINote:This is an extension ofHouse Robber.After robbing those houses on that street, the thief has found himself a new place for his thi...
分类:
其他好文 时间:
2015-07-03 18:59:20
阅读次数:
135
题目:You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping...
分类:
其他好文 时间:
2015-07-01 13:52:20
阅读次数:
107
https://leetcode.com/problems/house-robber-ii/Note:This is an extension ofHouse Robber.After robbing those houses on that street, the thief has found ...
分类:
其他好文 时间:
2015-06-28 17:01:52
阅读次数:
109
#198 House Robber
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them...
分类:
其他好文 时间:
2015-06-25 21:16:15
阅读次数:
110
Description:You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint...
分类:
其他好文 时间:
2015-06-25 12:19:18
阅读次数:
100
Description:You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint...
分类:
其他好文 时间:
2015-06-24 01:56:47
阅读次数:
117
Problem Description
The aspiring Roy the Robber has seen a lot of American movies, and knows that the bad guys usually gets caught in the end, often because they become too greedy. He has decided t...
分类:
其他好文 时间:
2015-06-20 17:11:21
阅读次数:
163