博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【LeetCode】55. Jump Game
阅读量:6294 次
发布时间:2019-06-22

本文共 622 字,大约阅读时间需要 2 分钟。

Jump Game

 

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.

 

不断更新能达到的最远范围rch,

如果rch >= n-1,说明到达最后,返回true

否则返回false

class Solution {public:    bool canJump(int A[], int n) {        int rch = 0;        for(int i = 0; i <= rch; i ++)        {            rch = max(rch, A[i]+i);            if(rch >= n-1)                return true;        }        return false;    }};

 

转载地址:http://kdvta.baihongyu.com/

你可能感兴趣的文章
Ucenter 会员同步登录通讯原理
查看>>
php--------获取当前时间、时间戳
查看>>
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>