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 }
  • 相关阅读:
    poj3411
    2241 排序二叉树
    1004 四子连棋
    Poj1482
    poj2046
    Poj3087
    poj3414
    php使用flock堵塞写入文件和非堵塞写入文件
    HTML样式以及使用
    高效程序猿的狂暴之路
  • 原文地址:https://www.cnblogs.com/birdhack/p/4035643.html
Copyright © 2011-2022 走看看