程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> LeetCode:Maximum Subarray

LeetCode:Maximum Subarray

編輯:C++入門知識

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.

思路:采用分治的策略。計算左半部分的子集和的最大值,再計算右半部分子集和的最大值,再計算跨越左右兩部分子集和的最大值。求出的三個值中最大的一個就是要求的最大和。


代碼:

int Solution::maxSubArray(int A[], int n)
{
   return calculateMax(A,0,n-1);
}

int Solution::calculateMax(int A[],int left,int right)
{
    if(left == right)
        return A[left];
    int mid = (left + right) / 2;
    int subleft_max = calculateMax(A,left,mid);
    int subright_max = calculateMax(A,mid+1,right);
    int sum = A[mid];
    int left_max = A[mid];
    int i;
    for(i = mid-1;i >= left;i--)
    {
        sum = sum + A[i];
        if(sum > left_max)
            left_max = sum;
    }
    sum = A[mid+1];
    int right_max = A[mid+1];
    for(i = mid+2;i <= right;i++)
    {
        sum = sum + A[i];
        if(sum > right_max)
            right_max = sum;
    }
    int temp;
    if(subleft_max > subright_max)
        temp = subleft_max;
    else
        temp = subright_max;
    if(temp > (left_max + right_max))
        return temp;
    else
        return left_max + right_max;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved