55.Jump Game

Posted 去做点事情

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了55.Jump Game相关的知识,希望对你有一定的参考价值。

 

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

 

以上是关于55.Jump Game的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode][55] Jump Game

Leetcode55 Jump Game

Leetcode 55. Jump Game

55. Jump Game

55. Jump Game

55. Jump Game