zoukankan      html  css  js  c++  java
  • [leetcode] Best Time to Buy and Sell Stock II

    Say you have an array for which the ith element is the price of a given stock on day i.

    Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

    给定一个数组,第i个元素代表第i天的股票价格,现在可以进行无数次交易,但是在同一天中不能交易多次,求最大利润。

    依次计算前后两天的差值作为利润,如果利润大于零,就加入到最大收益中,否则跳过。时间复杂度o(n)。

    代码如下:

     1 class Solution {
     2 public:
     3     int maxProfit(vector<int> &prices) {
     4         // Start typing your C/C++ solution below
     5         // DO NOT write int main() function
     6         int result=0;
     7         if(prices.size()==0||prices.size()==1) return 0;
     8         for(int i=0;i<prices.size()-1;i++)
     9         {
    10             int profit=prices[i+1]-prices[i];
    11             if(profit>0)
    12             {
    13                 result+=profit;
    14             }
    15         }
    16         return result;
    17     }
    18 };
  • 相关阅读:
    2018.8.5 复习笔记
    C#抽象类与接口的区别【转】
    double转整数问题
    C++学习笔记
    BCG使用
    C++设计模式之工厂方法模式
    静态成员函数
    CTreeCtrl 控件使用总结
    WinAPI: ShellExecute
    C++ STL map使用
  • 原文地址:https://www.cnblogs.com/jostree/p/3704367.html
Copyright © 2011-2022 走看看