赞
踩
跳跃游戏https://leetcode-cn.com/problems/jump-game/
给定一个非负整数数组 nums
,你最初位于数组的 第一个下标 。
数组中的每个元素代表你在该位置可以跳跃的最大长度。
判断你是否能够到达最后一个下标
- class Solution {
- public:
- bool canJump(vector<int>& nums) {
- int k = 0;
- for (int i = 0; i < nums.size(); i++) {
- if (i > k) return false;
- k = max(k, i + nums[i]);
- }
- return true;
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。