当前位置:网站首页>NC7 买卖股票的最好时机(一)

NC7 买卖股票的最好时机(一)

2022-08-09 13:02:00 syc596

NC7 买卖股票的最好时机(一)

买卖股票的最好时机(一)_牛客题霸_牛客网 (nowcoder.com)


//11
//贪心
import java.util.*;
public class Solution {
    public int maxProfit (int[] prices) {
        int maxProfit=0;
        int minPrice=prices[0];
        for(int i=1;i<prices.length;i++){
            minPrice=Math.min(minPrice,prices[i]);
            maxProfit=Math.max(maxProfit,prices[i]-minPrice);
        }
        return maxProfit;
    }
}


// //动规
// import java.util.*;
// public class Solution {
//     public int maxProfit (int[] prices) {
//         int min=prices[0];
//         int[] dp=new int[prices.length+1];
//         dp[0]=0;
//         int ret=0;
//         for(int i=1;i<prices.length;i++){
//             if(prices[i]<min){
//                 min=prices[i];
//             }
//             dp[i]=prices[i]-min;
//             ret=Math.max(ret,dp[i]);
//         }
//         return ret;
//     }
// }

原网站

版权声明
本文为[syc596]所创,转载请带上原文链接,感谢
https://blog.csdn.net/A240428037/article/details/126189205