Java for LeetCode 121 Best Time to Buy and Sell Stock

时间:2015-05-25 18:17:57   收藏:0   阅读:275

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.

解题思路:

一次遍历,每次找到最小的Buy点即可,JAVA实现如下:

    public int maxProfit(int[] prices) {
        int buy = 0;
        int profit = 0;
        for (int i = 0; i < prices.length; ++i) {
            if (prices[buy] > prices[i])
                buy = i;
            profit = Math.max(profit, prices[i] - prices[buy]);
        }
        return profit;
    }

 

原文:http://www.cnblogs.com/tonyluis/p/4528186.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!