LeetCode Maximum Subarray
來源:程序員人生 發布時間:2014-11-07 08:23:55 閱讀次數:2074次
LeetCode Maximum Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.
For example, given the array [?2,1,?3,4,?1,2,1,?5,4]
,
the contiguous subarray [4,?1,2,1]
has the largest sum = 6
.
思路分析:還是考察DP,定義數組sum[i]保存從A[0]到A[i]的最大sum,則sum[i] = Math.max(sum[i⑴], sum[i⑴] + A[i])
AC Code
public class Solution {
public int maxSubArray(int[] A) {
if(A.length == 0) return 0;
if(A.length == 1) return A[0];
int [] sum = new int [A.length];
//sum[i] store the max sum from A[0] to A[i]
sum[0] = A[0];
for(int i = 1; i < A.length; i++){
sum[i] = Math.max(sum[i⑴], sum[i⑴] + A[i]);
}
int maxSum = sum[0];
for(int i = 0; i < A.length; i++){
if(sum[i] > maxSum){
maxSum = sum[i];
}
}
return maxSum;
}
}
生活不易,碼農辛苦
如果您覺得本網站對您的學習有所幫助,可以手機掃描二維碼進行捐贈