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

[leetcode]Best Time to Buy and Sell Stock

时间:2014-08-07 00:20:37      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   io   for   

Best Time to Buy and Sell Stock

 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.

算法思路:

遍历到第i个节点的时候,维护前i - 1个节点中最小节点,并求第i天卖出所获利润,并维护最大利润

 1 public class Solution {
 2     public int maxProfit(int[] prices) {
 3         if(prices == null || prices.length < 2) return 0;
 4         int min = prices[0];
 5         int max = 0;
 6         for(int i = 1; i < prices.length; i++){
 7             min = Math.min(min,prices[i]);
 8             max = Math.max(max,prices[i] - min);
 9         }
10         return max;
11     }
12 }

 

[leetcode]Best Time to Buy and Sell Stock,布布扣,bubuko.com

[leetcode]Best Time to Buy and Sell Stock

标签:des   style   blog   http   color   os   io   for   

原文地址:http://www.cnblogs.com/huntfor/p/3895938.html

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