[leetcode] Best Time to Buy and Sell Stock

来源:互联网 发布:手机宽带拨号软件 编辑:程序博客网 时间:2024/06/08 10:57

From : https://leetcode.com/problems/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.

class Solution {public:    int maxProfit(vector<int>& prices) {        int profit=0;        for(int i=0, days=prices.size(), buy=INT_MAX; i<days; i++) {            int price = prices[i];            if(price < buy) buy=price;            if(profit < price-buy) {                profit = price-buy;            }        }        return profit;    }};


0 0
原创粉丝点击