Leecode OJ Jump Game

来源:互联网 发布:淘宝五线谱乐器专营店 编辑:程序博客网 时间:2024/05/17 05:53

Given an array of non-negative integers, you are initially positioned at the first index of the array.

Each element in the array represents your maximum jump length at that position.

Determine if you are able to reach the last index.

For example:
A = [2,3,1,1,4], return true.

A = [3,2,1,0,4], return false.

看了Mike3大神的才会做。。。

class Solution {public:    bool canJump(int A[], int n) {        int canReach = 0;  // the original canReach point is the starting point        for (int i = 0; i < n && i <= canReach; i++) {            if (i + A[i] > canReach) canReach = i + A[i];            if (canReach >= n - 1) return true;        }        return canReach >= n - 1;    }};


0 0
原创粉丝点击