(简单)两数之和

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

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

方法一:很容易想到的暴力法,双重for循环,遍历2遍数组,穷举法找到和为target的两数数组下标。
代码如下:

public static int[] fun1(int[] nums, int target) {
    for (int i = 0; i < nums.length; i++) {
        for (int j = i + 1; j < nums.length; j++) {
            // 满足条件则返回
            if (nums[i] + nums[j] == target) {
                return new int[] {i,j};
            }
        }
    }
    // 代码的鲁棒性体现,未找到结果则抛出异常
    throw new IllegalArgumentException("no two nums match");
}

方法二:一遍哈希法。首先创建一个哈希表,然后遍历数组,如果将当前正在被遍历的元素称为num1,另外一个满足条件的数称为num2,则有num2 = target - num1。遍历当前元素时,只需查看哈希表中是否存在num2,如果存在,则找到了和为target的两个数。如果不存在,将当前正在遍历的元素的值作为key,下标索引作为value存入哈希表,继续遍历下一个。
代码如下:

public static int[] fun1(int[] nums, int target) {
    Map map = new HashMap<>();
    for (int i = 0;i < nums.length;i++) {
        // 待寻找的第二个数
        int num2 = target - nums[i];
        // 如果哈希表中存在第二个数则找到了满足条件的
        if (map.containsKey(num2)) {
            return new int[] {map.get(num2),i};
        }
        // 否则未找到将当前元素放入哈希表,将值作为key,下标索引作为value
        map.put(nums[i],i);
    }
    // 鲁棒性
    throw new IllegalArgumentException("no two nums match");
}

自测验证,也可直接在LeetCode上提交验证。

public static void main(String[] args) {
    int[] nums = {2, 7, 11, 15};
    int target = 9;
    int[] result = fun2(nums,target);
    // 输出的数组下标应该是0和1
    Arrays.stream(result).forEach(System.out::println);
}

你可能感兴趣的:((简单)两数之和)