import java.util.*; public class Solution { /** * * @param prices int整型一维数组 * @return int整型 */ public int maxProfit (int[] prices) { int len = prices.length; if (len < 2) return 0; // 天数小于2时,直接返回0 int[] dp = new int[len]; // 记dp[i]表示第i+1天卖...