forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbestTimeToBuyAndSellStock.cpp
39 lines (28 loc) · 1.05 KB
/
bestTimeToBuyAndSellStock.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Source : https://oj.leetcode.com/problems/best-time-to-buy-and-sell-stock/
// Author : Hao Chen
// Date : 2014-06-18
/**********************************************************************************
*
* 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 max=0, begin=0, end=0, delta=0;
for (int i=0; i<prices.size(); i++) {
end = i;
delta = prices[end] - prices[begin];
if (delta <= 0){
begin = i;
}
if ( delta > max ){
max = delta;
}
}
return max;
}
};