167.Two Sum ii-input Array is sorted

Source: Internet
Author: User

     /** 167.Two Sum ii-input array is sorted * 2016-6-4 by Mingyang * Given An array of integers the is ALR      Eady sorted in ascending order, * Find-numbers such that they add-to-a specific target number. *the function Twosum should return indices of the numbers such that they add up to the target, *where index1 mus       T is less than INDEX2.      *please Note that your returned answers (both Index1 and INDEX2) is not zero-based. */       Public int[] Twosum (int[] numbers,inttarget) {              if(numbers==NULL|| Numbers.length < 1)return NULL; intI=0, J=numbers.length-1;  while(i<j) {intx = Numbers[i] +Numbers[j]; if(x<target) {                      ++i; } Else if(x>target) {                      --J; } Else {                      return New int[]{i+1, J+1}; }              }              return NULL; }  

167.Two Sum ii-input array is sorted

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.