zoukankan      html  css  js  c++  java
  • LeetCode

    题目:

    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.

    思路:这样想,只要是正数,就能一直往前走,唯一障碍就是0,只要能跳跃过0就行了。所以每当我们遇到0时,就看之前的最大步数能不能跳过它。

    package dp;
    
    public class JumpGame {
    
        public boolean canJump(int[] nums) {
            int len = nums.length;
            int max = 0;
            for (int i = 0; i < len - 1; ++i) {
                if (i + nums[i] > max)
                    max = i + nums[i];
                if (nums[i] == 0 && i >= max) // 为0,之前的最大步数不能跳过它就返回false
                    return false;
            }
            
            return max >= len - 1;
        }
        
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            int[] nums1 = {2,3,1,1,4};
            int[] nums2 = {0,3,2};
            
            JumpGame j = new JumpGame();
            System.out.println(j.canJump(nums1));
            System.out.println(j.canJump(nums2));
        }
    
    }
  • 相关阅读:
    ffmpeg视频操作记录
    frida定义线程写图片文件
    frida创建静态域
    frida创建字符串
    pyppeteer_stealth
    python ast
    最小的js编译器
    excel加双引号和逗号
    JUnit 单元测试方法中启用子线程的问题
    ctrip 开源 DAL 框架相关问题总结
  • 原文地址:https://www.cnblogs.com/null00/p/5013292.html
Copyright © 2011-2022 走看看