码迷,mamicode.com
首页 > 编程语言 > 详细

Java for LeetCode 121 Best Time to Buy and Sell Stock

时间:2015-05-25 18:20:31      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

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;
    }

 

Java for LeetCode 121 Best Time to Buy and Sell Stock

标签:

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

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