[LeetCode] 008: Best Time to Buy and Sell Stock

来源:互联网 发布:售楼软件有哪些 编辑:程序博客网 时间:2024/06/15 16:37
[Problem]

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.


[Solution]
class Solution {
public:
int maxProfit(vector<int> &prices) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
int minPrice = INT_MAX, maxProfit = 0;
for(int i = 0; i < prices.size(); ++i){
if(i == 0){
minPrice = prices[i];
}
else{
maxProfit = max(maxProfit, prices[i] - minPrice);
minPrice = min(minPrice, prices[i]);
}
}
return maxProfit;
}
};
说明:版权所有,转载请注明出处。Coder007的博客
原创粉丝点击