【leetCode】股票的最大利润day12

题目

假设把某股票的价格按照时间先后顺序存储在数组中,请问买卖该股票一次可能获得的最大利润是多少?

 

示例 1:

输入: [7,1,5,3,6,4]
输出: 5
解释: 在第 2 天(股票价格 = 1)的时候买入,在第 5 天(股票价格 = 6)的时候卖出,最大利润 = 6-1 = 5 。
     注意利润不能是 7-1 = 6, 因为卖出价格需要大于买入价格。
示例 2:

输入: [7,6,4,3,1]
输出: 0
解释: 在这种情况下, 没有交易完成, 所以最大利润为 0。
 

限制:

0 <= 数组长度 <= 10^5

解题思路

  1. 首先理解题意,买入和卖出,差价肯定是后几天和当天的差价。
  2. 所以我们计算出所有可能产生的差价,然后选出最大的一个。那就是最大利润了

show me code

class Solution {
    public int maxProfit(int[] prices) {
        int i = 0;
        int nextMax =0;
        int max = 0;
//循环计算出所有可能性的差价
    for( i = 0; i< prices.length; i++){
        for(int j = i;j< prices.length-i;j++){
          nextMax =  prices[j] - prices[i];
         // 将最大的价格留下来,如果大于当前价格,那就替换。
          if(max < nextMax){
              max = nextMax; 
          }
        }
    }
    // 最后输出最大价格
    return max;
    }
}
  1. 正确
class Solution {
    public int maxProfit(int[] prices) {
        if(prices == null || prices.length <= 1) {
            return 0;
        }
        int res = 0, min = prices[0];
        for(int i = 1; i < prices.length; i++) {
            if(prices[i] <= min) {
                min = prices[i];
            }else {
                res = Math.max(res, prices[i] - min);
            }
        }
        return res;
    }
}
  • 但是上面的思路在刚开始就错了。
    如果我们再思考一下,如果说后一天的价格比今天的低那这岂不是后一天的利润肯定比今天买入的低了。所以说根据这个思路,我们来理一下
class Solution {
    public int maxProfit(int[] prices) {
        if(prices== null || prices.length ==0){
            return 0;
        }
      //假设第一天的价格是最小的
        int min = prices[0];
       //初始化最大利润
        int res = 0;
       // 遍历查找最小的价格,计算最大利润
        for (int i = 0; i<prices.length ;i++){
        //  后一天有价格低的肯定利润比当前高
            if(min > prices[i]){
          // 将价格低的给设为最小的
                min = prices[i];
            }else{
           // 计算使用最小价格计算最大利润
                 res = Math.max(res ,prices[i] - min);
            }
        }
        return res;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值