码迷,mamicode.com
首页 > 其他好文 > 详细

[Leetcode] Two Sum II - Input array is sorted

时间:2015-08-12 21:30:14      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:

这里因为是有序的,可以利用这个有序性来进行查找

left=0,right=num.length-1;

while(left<=right){

  sum = num[left] + num[right];

      if(sum<target) left++;

  else if(sum>target) right--;

  else return true;

}

return false;

[Leetcode] Two Sum II - Input array is sorted

标签:

原文地址:http://www.cnblogs.com/deepblueme/p/4725475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!