码迷,mamicode.com
首页 > 其他好文 > 详细

121. Best Time to Buy and Sell Stock

时间:2019-12-08 12:56:16      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:temp   price   max   turn   tor   class   toc   mamicode   vector   

  • 题目思路

  • 实现代码
class Solution 
{
public:
    int maxProfit(vector<int>& prices) 
    {
        int count = prices.size();
        int profit = 0;
        int tempprofit = 0;
        for(int i = 0;i < count;i++)
        {
            for(int j = i + 1;j < count;j++)
            {
                tempprofit = prices[j] - prices[i];
                if(tempprofit > profit)
                {
                    profit = tempprofit;
                }
            }
        }
        return profit;
    }
};

技术图片

121. Best Time to Buy and Sell Stock

标签:temp   price   max   turn   tor   class   toc   mamicode   vector   

原文地址:https://www.cnblogs.com/Manual-Linux/p/12005209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!