LeetCode: Best Time to Buy and Sell Stock

来源:互联网 发布:js页面加载时执行函数 编辑:程序博客网 时间:2024/05/16 13:47

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 min = INT_MAX, profit = 0;        for(int i = 0; i < prices.size(); i++)        {            if(prices[i] < min){                min = prices[i];            }            if(prices[i] - min > profit)                profit = prices[i] - min;                    }        return profit;            }};

Round 2:

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


0 0
原创粉丝点击