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).

    题意:买卖股票的第二题。与1的变化在于可以买卖任意次数,但必须保证买卖一次后才能进行第二次。

    分析:实际上是求波浪线的所有上升段的长度和。
     
     1 public class Solution {
     2     public int maxProfit(int[] prices) {
     3             if (prices.length<=1) {
     4                 return 0;
     5             }
     6             
     7             int[] profits=new int[prices.length-1];
     8             int maxprofit=0;
     9             for (int i = 0; i < profits.length; i++) {
    10                 profits[i]=prices[i+1]-prices[i];
    11             }
    12             
    13             for (int i : profits) {
    14                 if (i>0) {
    15                     maxprofit=maxprofit+i;
    16                 }
    17             }
    18             return maxprofit;
    19     }
    20 }
  • 相关阅读:
    minio 注意事项
    vim编辑器的快捷命令
    kubernetes Label的增删改查
    JVM java堆内存
    navicat注册机
    hibernate学习笔记_基础配置
    Hibernate学习笔记_helloworld
    junit4初级
    Struts学习笔记_声明式异常处理
    Struts学习笔记_拦截器
  • 原文地址:https://www.cnblogs.com/birdhack/p/4035643.html
Copyright © 2011-2022 走看看