码迷,mamicode.com
首页 > 其他好文 > 详细

Jump Game

时间:2017-06-10 21:29:02      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:else   size   als   使用   div   方法   color   log   ret   

方法:使用一个变量记录能到达的最远距离

class Solution {
public:
    bool canJump(vector<int>& nums) {
        int maxIndex = 0;
        for(int i=0; i<nums.size(); ++i)
        {
            if(i>maxIndex || maxIndex >= (nums.size()-1))
                break;
            maxIndex = max(maxIndex, i + nums[i]);
        }
        
        if(maxIndex >= nums.size() - 1)
            return true;
        else
            return false;
    }
};

 

Jump Game

标签:else   size   als   使用   div   方法   color   log   ret   

原文地址:http://www.cnblogs.com/chengyuz/p/6979761.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!