LeetCode#55. 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.
  • 难度:Medium
  • 思路:

    • 利用一个boolean数组存储第i个位置是否可达,第i个位置可达的条件是第i个位置之前的元素里存在一个元素可达i,所以利用两个for循环将Boolean数组填满,最后返回Boolean数组的最后一个值

    • 利用贪婪的思想:定义一个int变量,存储的是能到达的最远的位置,一个for循环贪婪更新这个int变量。在更新过程中,如果变量值小于i,说明第i个元素不能到达,可以直接返回FALSE。

  • 代码:
    • 方法一:动态规划(运行超时)
public class Solution {
    public boolean canJump(int[] nums) {
       if(nums.length == 0 || nums == null){
           return false;
       }
       int len = nums.length;
       boolean[] result = new boolean[len];
       result[0] = true;
       for(int i = 1; i < len; i++){
           //遍历i前面的元素,判断是否存在一个元素可达i,找到可达元素就跳出本次循环
           for(int j = 0; j < i; j++){
               if(result[j] && (j+nums[j] >= i)){
                   result[i] = true;
                   break;
               }
           }
       }
       return result[len-1];
    }
}
  • 贪婪算法:
public class Solution {
    public boolean canJump(int[] nums) {
       if(nums.length == 0  || nums == null){
           return false;
       }
       int ability = nums[0];
       for(int i = 0; i < nums.length; i++){
           if(ability < i){
               return false;
           }
           ability = ability > i + nums[i]?ability : i+nums[i];
       }
       return true;
    }
}

此博客有4四种详细解题思路,值得参考
http://www.cnblogs.com/yuzhangcmu/p/4039840.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值