标签:else size als 使用 div 方法 color log ret
方法:使用一个变量记录能到达的最远距离
class Solution { public: bool canJump(vector<int>& nums) { int maxIndex = 0; for(int i=0; i<nums.size(); ++i) { if(i>maxIndex || maxIndex >= (nums.size()-1)) break; maxIndex = max(maxIndex, i + nums[i]); } if(maxIndex >= nums.size() - 1) return true; else return false; } };
标签:else size als 使用 div 方法 color log ret
原文地址:http://www.cnblogs.com/chengyuz/p/6979761.html