Leetcode122买股票的最佳时机2

代码:

class Solution {
    public int maxProfit(int[] prices) {
        int n = prices.length;
        int[][] dp = new int[n][2];
        dp[0][0] = 0;
        dp[0][1] = -prices[0];

        for(int i=1;i

你可能感兴趣的:(算法,leetcode,数据结构)