1. 两数之和(JAVA)LeetCode Hot 100

1. 两数之和

题目

给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。

示例1

输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。

解法1(暴力搜索法)
思路
  • 枚举数组中的每一个数x,寻找数组中的是否存在yy = target - x
  • 由于每个元素不能被使用两次,所以第二层for循环,只能从x后面的元素中寻找y
  • 如果在第二层遍历中找到数组中存在该y值,将xy的下标存入res数组并返回数组
  • 如果不存在则继续遍历知道找到为止
  • 如果最终没有结果则抛出异常

刚接触刷题时最容易想到的解法,从头遍历两个数组,找到数组中符合x + y = target 的两个数。这种解法是正确的,但是时间复杂度达到O(n²),不是最优解。

public int[] twoSum(int[] nums, int target) {
	int[] res = new int[2];
    for (int i = 0; i < nums.length; i++) {
    	for (int j = i + 1; j < nums.length; j++) {
        	if (nums[i] + nums[j] == target) {
        	// 找到符合x + y = target 的两个数,用res数组存储这两个数的下标
            	res[0] = i;
                res[1] = j;
                return res;	// 找到结果,返回res数组,结束循环
            }
        }
    }
    return res;
}
解法2(两次for循环,HashMap)
思路
  • 第一次遍历nums数组,将数组数据存入哈希表中
  • 第二次遍历nums数组, 求出yy = target - x
  • 如果哈希表存在该y值,并且xy的下标不同,将xy的下标存入res数组并返回数组
  • 如果不存在则继续遍历知道找到为止
  • 如果最终没有结果则抛出异常
public int[] twoSum(int[] nums, int target) {
     int[] res = new int[2];
     HashMap<Integer, Integer> map = new HashMap<>();
     for (int i = 0; i < nums.length; i++) {
     	map.put(nums[i], i); // 将数组数据存入哈希表中
     }
     for (int i = 0; i < nums.length; i++) {
        int temp = target - nums[i];  // y = target - x
            if (map.containsKey(temp) && i != map.get(temp)) {
            // 如果哈希表中存在该y值,并且x与y值不重复匹配,即为正确答案
            // 利用res数组保存x和y的下标。
                res[0] = i;
                res[1] = map.get(temp);
                return res; // 找到答案,提前结束循环
            }
        }
     return res;
}
解法3(一次for循环,HashMap)
思路
  • 遍历nums数组,i为当前下标,判断map中是否存在target - nums[i]的key值
  • 如果存在则找到了两个值
  • 如果不存在则将当前的(nums[i], i)存入到哈希表中,继续遍历知道找到为止
  • 如果最终没有结果则抛出异常
public int[] twoSum(int[] nums, int target) {
     HashMap<Integer, Integer> map = new HashMap<>();
     for (int i = 0; i < nums.length; i++) {
         if (map.containsKey(target - nums[i])) {
             return new int[]{map.get(target - nums[i]), i};
         }
         map.put(nums[i], i); // 将(nums[i],i)存入到哈希表中
    }
	return new int[0];
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

十六学编程

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值