經典算法——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.

Subscribe to see which companies asked this question




class Solution {
public:
	bool canJump(vector<int>& nums) {
		int maxreach = 0;
		for (int i = 0; i<nums.size() && i <= maxreach; ++i)
		{
			maxreach = max(i + nums[i], maxreach);
			if (maxreach >= nums.size() - 1)//當我們知道最遠可以達到數組最末尾時,可以直接返回true,而不用遍歷整個數組
				return true;
		}
	}
};




發佈了157 篇原創文章 · 獲贊 82 · 訪問量 66萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章