LeetCode刷题之两数之和

两数之和

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

示例:

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

class Solution {
    public int[] twoSum(int[] nums, int target) {
        Arrays.sort(nums);
        //定义计算开始下标和结束下标
        int startIndex = 0, endIndex = nums.length - 1;
        //如果下标不相等,则开始匹配,这里不严谨的没做过多验证,主要实现功能
        while (startIndex != endIndex) {
            int sum = nums[startIndex] + nums[endIndex];
            //如果两个数相等,则直接返回
            if (sum == target) {
                return new int[]{startIndex, endIndex};
            } else if (sum > target) {
                //如果总数大于目标数,endIndex-1 再次循环判断,这样集合中有效利用每一个数据,并且不会数据重复利用
                endIndex--;
            } else {
                //同理
                startIndex++;
            }
        }
        return null;
    }
}

你可能感兴趣的:(LeetCode刷题之两数之和)