easy198. House Robber
Posted Sherry_Yang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easy198. House Robber相关的知识,希望对你有一定的参考价值。
题目一:
一个极其简单的动态规划。
class Solution {
public:
int rob(vector<int>& nums) {
int best0 = 0; // 表示没有选择当前houses
int best1 = 0; // 表示选择了当前houses
for(int i = 0; i < nums.size(); i++){
int temp = best0;
best0 = max(best0, best1); // 没有选择当前houses,那么它等于上次选择了或没选择的最大值
best1 = temp + nums[i]; // 选择了当前houses,值只能等于上次没选择的+当前houses的money
}
return max(best0, best1);
}
};
参考一个很好的blog:http://www.cnblogs.com/grandyang/p/4383632.html
题目二:形成环
参考一个很好的blog:https://www.cnblogs.com/grandyang/p/4518674.html
题目三:沿着二叉树偷的…一种看起来很厉害的偷法
参考一个很好的blog:http://www.cnblogs.com/grandyang/p/5275096.html
以上是关于easy198. House Robber的主要内容,如果未能解决你的问题,请参考以下文章