zoukankan      html  css  js  c++  java
  • 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.

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

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

    Hide Tags
     Array Greedy 

    链接:http://leetcode.com/problems/jump-game/

    题解:

    Greedy贪婪法。维护一个maxCover,对数组从0 - maxCover或者nums.length进行遍历。当maxCover >= nums.length - 1时表示可以跳到最后一个元素。需要计算精确。

    Time Complexity - O(n), Space Complexity - O(1)。

    public class Solution {
        public boolean canJump(int[] nums) {
            if(nums == null && nums.length == 0)
                return false;
            int maxCover = 0;
            
            for(int i = 0; i < nums.length && i <= maxCover; i ++){
                maxCover = Math.max(maxCover, i + nums[i]);
                if(maxCover >= nums.length - 1)
                    return true;
            }
            
            return false;
        }
    }

    Update:

    public class Solution {
        public boolean canJump(int[] nums) {
            if(nums == null || nums.length == 0)
                return false;
            int maxCover = 0;
            
            for(int i = 0; i < nums.length && i <= maxCover; i++) {
                maxCover = Math.max(nums[i] + i, maxCover);
                if(maxCover >= nums.length - 1)
                    return true;
            }
            
            return false;
        }
    }
    

      

    二刷:

    Java:

    Time Complexity - O(n), Space Complexity - O(1)。

    public class Solution {
        public boolean canJump(int[] nums) {
            if (nums == null || nums.length == 0) {
                return false;
            }
            int maxCover = 0;
            for (int i = 0; i < nums.length && i <= maxCover; i++) {
                if (i + nums[i] > maxCover) {
                    maxCover = i + nums[i];
                }
                if (maxCover >= nums.length - 1) {
                    return true;
                }
            }
            return false;
        }
    }

    三刷:

    Java:

    public class Solution {
        public boolean canJump(int[] nums) {
            if (nums == null || nums.length == 0) return false;
            int maxCover = 0;
            for (int i = 0; i < nums.length && i <= maxCover; i++) {
                if (i + nums[i] >= nums.length - 1) return true;
                maxCover = Math.max(maxCover, i + nums[i]);
            }
            return false;
        }
    }
  • 相关阅读:
    音视频-x624和H.264
    状态机解决复杂逻辑及使用
    任意程序上的蒙版画笔实现
    WPF-3D圆柱体透视
    WPF-3D-Z-buffering 导致的遮盖物体不渲染问题
    WPF3D立方体图形展开动画思路
    解决Prism 8.0 I添加InvokeCommandAction xaml报错问题
    Spark编程基础(Python版)
    前端开发工具fscapture
    修改element ui select选择器 样式
  • 原文地址:https://www.cnblogs.com/yrbbest/p/4436373.html
Copyright © 2011-2022 走看看