"Beauty of programming" 2.14 The maximum value of the sum of the subarray of the array

Source: Internet
Author: User

Have done, just say the idea.

Records the maximum sum in a subarray of a[0...n-1] that ends with the first element in sum,

If the sub-array ending with the i-1 element is less than 0, then the largest of the sub-arrays ending with the first element is a[i] itself otherwise a[i] + Sum (i-1)

Summing up is sum = (sum > 0)? A[i] + sum:a[i];

Then record the maximum value of all occurrences of sum.

#include <stdio.h>intGetmaxsubarraysum (intBintAlen) {    intMaxsum = a[0]; intSum = a[0];  for(inti =1; I < Alen; i++) {Sum= (Sum >0) ? Sum +A[i]: a[i]; Maxsum= (Sum > Maxsum)?sum:maxsum; }    returnmaxsum;}intMain () {inta[7] = {-2,5,3,-6,4,-8,6}; intb[6] = {1,-2,3,5,-3,2}; intc[6] = {0,-2,3,5,-1,2}; intd[5] = {-9,-2,-3,-5,-3}; intmax = Getmaxsubarraysum (d,5); return 0;}

"Beauty of programming" 2.14 The maximum value of the sum of the subarray of the array

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.