首页 > 其他 > 详细

[LeetCode] 167. Two Sum II - Input array is sorted

时间:2017-06-13 16:05:48      阅读:192      评论:0      收藏:0      [点我收藏+]

https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/

类似于 binary search

public class Solution {
    public int[] twoSum(int[] numbers, int target) {
        int[] result = new int[2];
        int start = 0;
        int end = numbers.length - 1;
        while (start < end) {
            if (numbers[start] + numbers[end] == target) {
                result[0] = start + 1;
                result[1] = end + 1;
                break;
            } else if (numbers[start] + numbers[end] > target) {
                end--;
            } else {
                start++;
            }
        }
        return result;
    }
}

 

[LeetCode] 167. Two Sum II - Input array is sorted

原文:http://www.cnblogs.com/chencode/p/two-sum-ii-input-array-is-sorted.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!