Leetcode-container with most water

Source: Internet
Author: User

Given n non-negative integers A1, A2, ..., an, where each represents a point at Coordi Nate (i, ai). N Vertical Lines is drawn such that the the both endpoints of line I am at (i, ai) and ( i, 0). Find lines, which together with X-axis forms a container, such that the container contains the most water.

Note:you may not slant the container.

Analysis:

Solution:

1  Public classSolution {2      Public intMaxarea (int[] height) {3         intMax = 0;4         intHead = 0;5         intEnd = Height.length-1;6        7          while(head<end) {8             intleft =Height[head];9             intright =Height[end];Ten             intvol = (end-head) *math.min (left,right); One             if(vol>max) max =Vol; A  -             if(left<=Right ) -                  while(Head<end && Left>=height[head]) head++; the             Else  -                  while(head< end && Right>=height[end]) end--; -         } -          +         returnMax;  -          +     } A}

Leetcode-container with most water

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.