Best Time to Buy and Sell Stock II

profit 可以累积

 1 public class Solution {
 2     public int maxProfit(int[] prices) {
 3         // IMPORTANT: Please reset any member data you declared, as
 4         // the same Solution instance will be reused for each test case.
 5         if(prices == null)
 6             return 0;
 7         int result = 0;
 8         for(int i = 1; i < prices.length; i++)
 9         {
10             if(prices[i] > prices[i-1])
11                 result += prices[i] - prices[i-1];
12         }
13         return result;
14     }
15 }
原文地址:https://www.cnblogs.com/jasonC/p/3412277.html