首页 > 其他 > 详细

leetcode 5.4

时间:2020-05-04 23:44:38      阅读:54      评论:0      收藏:0      [点我收藏+]

45、跳跃游戏


class Solution
{
public:
int jump(vector<int>& nums)
{

int temp = nums[0];
int start = 0;
int end = 0;
int count = 0;
int len = nums.size() - 1;
while (temp < len)
{
for (int i = start; i <= end; i++)
{
int temp1 = nums[i] + i;
temp = (temp >temp1 ? temp : temp1);
}
start = end + 1;
end = temp;
count++;
}
return count;
}
};

leetcode 5.4

原文:https://www.cnblogs.com/wfplingyun/p/12828677.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!