LeetCode题解:Best Time to Buy and Sell Stock

来源:互联网 发布:网络繁忙请稍后再试 编辑:程序博客网 时间:2024/06/05 10:19

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

If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.

题意:找出买卖股票的最佳时机,只能完成一单交易

解决思路:……

代码:

public class Solution {    public int maxProfit(int[] prices) {        int maxCur = 0, maxSoFar = 0;        for(int i = 1; i < prices.length; i++) {            maxCur = Math.max(0, maxCur += prices[i] - prices[i-1]);            maxSoFar = Math.max(maxCur, maxSoFar);        }        return maxSoFar;    }}
0 0
原创粉丝点击