/**
* Source : https://oj.leetcode.com/problems/jump-game/
*
* Created by lverpeng on 2017/7/17.
*
* 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.
*/
public class JumpGame { /**
* max记录目前能到的最远位置,循环数组,每次max和当前i能到的最远位置作比较,如果比max大,说明能到比原来到更远的位置,更新max
* 如果max已经大于等于数组长度,则说明能到数组末尾,返回true
* 如果当前已经大于max说明当前位置已经到不了,返回false
*
* 如果上面没有返回,说明不能到数组末尾
*
* @param arr
* @return
*/
public boolean canJump (int[] arr) {
if (arr.length <= 0) {
return false;
}
int length = arr.length;
// 记录最远能到的位置
int max = 0;
for (int i = 0; i < max && i < length - 1; i++) {
if (i + arr[i] > max) {
max = i +arr[i];
}
if (max >= length - 1) {
return true;
}
}
return false;
} public static void main(String[] args) {
JumpGame jumpGame = new JumpGame();
int[] arr = new int[]{2,3,1,1,4};
int[] arr1 = new int[]{3,2,1,0,4};
int[] arr2 = new int[]{3,2,1,0,4,1};
System.out.println("true---->" + jumpGame.canJump(arr));
System.out.println("false--->" + jumpGame.canJump(arr1));
System.out.println("false--->" + jumpGame.canJump(arr2));
}
}

最新文章

  1. Flexbox 自由的布局
  2. jquery属性选择器(同时匹配多个条件)
  3. [测试] Firemonkey Android 照相自订分辨率测试
  4. Second Day learning English
  5. 有关嵌入式linux的注意点总结
  6. PHP5.3, PHP5.4, PHP5.5新特性
  7. leetcode problem 37 -- Sudoku Solver
  8. 自定义QT事件
  9. opencart修改后台文件夹名
  10. hdu 5569 matrix(简单dp)
  11. Loadrunner之文件的下载(八)
  12. 再谈前端HTML模板技术
  13. Ubuntu Desktop: 备份与还原
  14. Confluence 6 配置默认语言界面
  15. mac:Go安装和配置+GoLand安装和使用之完整教程
  16. .net core在Linux下获取AD域信息
  17. Post Tuned Hashing,PTH
  18. C# DataTable分页函数
  19. [ovs][dpdk] ovs-dpdk, dpdk port 大量丢包
  20. MySQL在windows的my-default.ini配置

热门文章

  1. ubuntu18.04静态ip设置
  2. Maven捆绑TestNG实现测试自动化执行、部署和调度
  3. Spring流行的十大理由
  4. python 字典中的get()方法
  5. 转 Refresh Excel Pivot Tables Automatically Using SSIS Script Task
  6. Exp6 信息搜集与漏洞扫描——20164325王晓蕊
  7. Java中main方法参数String[ ] args的使用。
  8. delphi 窗体最大化 最小化
  9. mysql兼容emoji表情存取
  10. 利用Module模块把构建的神经网络跑起来