首页 > 其他 > 详细

Best Time to Buy and Sell Stock II

时间:2014-10-19 00:04:36      阅读:365      评论:0      收藏:0      [点我收藏+]

明白了上一题是求最大的连续子数组之和后,这题就更加简单了,遇到小于0的就不要加。


public class Solution {
    public int maxProfit(int[] prices) {
    	
    	if(prices.length < 2)
    		return 0;
        
    	int n = prices.length;
    	int[] diffs = new int[n];
        
        for(int i=0;i<n-1;i++)
        	diffs[i] = prices[i+1] - prices[i];
        
        int sum = 0;
        
        for(int i=0;i<n-1;i++)
        {
        	if(diffs[i]>0)
        		sum+=diffs[i];
        }
        
        return sum;
    }
}


Best Time to Buy and Sell Stock II

原文:http://blog.csdn.net/tspatial_thunder/article/details/40227577

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