码迷,mamicode.com
首页 > 其他好文 > 详细

122. Best Time to Buy and Sell Stock II

时间:2018-02-20 00:38:11      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:答案   which   des   没有   次数   for   sel   ons   actions   

Say you have an array for which the ith element is the price of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

 假设你有一个数组,数组中第i个元素是给定股票在第i天的价格。

设计一个算法来得到最大利润。交易的次数没有限制(可买入再卖出多次)。但是,不能同时参与超过一次交易(再次买入之前需把现有股票卖出)。

 

代码参考了discuss中的高票答案,是我自己想复杂了,一直想找到何时买入何时卖出,其实并不需要

class Solution {
public int maxProfit(int[] prices) {
int max=0;
for(int i=1;i<prices.length;i++) {
if(prices[i]>prices[i-1])
max=max+(prices[i]-prices[i-1]);
}

return max;
}
}

 

122. Best Time to Buy and Sell Stock II

标签:答案   which   des   没有   次数   for   sel   ons   actions   

原文地址:https://www.cnblogs.com/mafang/p/8454690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!