53. 最大子序和 给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 ps:这题是看题解做的 动态规划还是需要练啊 public int maxSubArray(int[] nums) { int pre =0; int res = nums[0]; for (int x : nums) { // 判断x之前的数据是否为负数 pre = Math.max(x, pre + x); res = Math.max(res,pre); } return res; }