Sword means offer 33 arrange the array into the smallest number

Source: Internet
Author: User

Error code

classSolution { Public:    intFindgreatestsumofsubarray (vector<int>Array) {        intLength =array.size (); if(Length <=0) {Invalid=true; return 0; }        intsum =0; intMaxsum =0x80000000;  for(inti =0; I < length;i++){            if(Sum <0) Sum=Array[i]; Sum+=Array[i]; if(Sum >maxsum) Maxsum=sum; }        returnmaxsum; }    BOOLInvalid =false;};
sum + = array[i];  This sentence regardless of sum at less than 0 when the execution caused the error, the actual requirement should be less than 0 when not executed.
If you add else after the if is selective execution, not add is sequential execution, that is, regardless of the conditions to be executed. Note the IF after else selection.

Sword means offer 33 arrange the array into the smallest number

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.