首页 > 代码库 > 买卖股票的最佳时机

买卖股票的最佳时机

class Solution {
public:
    /**
     * @param prices: Given an integer array
     * @return: Maximum profit
     */
    int maxProfit(vector<int> &prices) {
        // write your code here
        if(prices.empty())
return 0 ;
int max = 0; /* 定义最大利润 */
int min = prices[0];
for(int i = 1 ; i < prices.size() ; i++ )
{
if(prices[i] < min)
min = prices[i];
int differ = prices[i] - min ;
if(differ > max)
max = differ;
}
return max;


    }
};

买卖股票的最佳时机