您的位置:首页 > 其它

LeetCode 121 Best Time to Buy and Sell Stock

2014-06-21 09:57 393 查看
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.

用一个数组A[n-1]来存储当天与前一天股票的差价,从而将该题转化为最大子序列和的问题,只不过没有负值,最小为0罢了。A[i]表示第i+1天股票价格与第i天的股票价格的差值。

public class Solution {
	public int maxsum(int [] num){
		int sum=0;
		int max=Integer.MIN_VALUE;
		for(int i=0;i<num.length;i++){
			sum+=num[i];
			if(max<sum) max=sum;
			if(sum<0) sum=0;
			
		}
		return max>0?max:0;
	}
    public int maxProfit(int[] prices) {
      if(prices.length==0||prices.length==1) return 0;
      int [] sub=new int [prices.length-1];
      for(int i=0;i<sub.length;i++){
    	  sub[i]=prices[i+1]-prices[i];
      }
      return maxsum(sub);
    }
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: