1. 两数之和
题目
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。
示例1
输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。
解法1(暴力搜索法)
思路
- 枚举数组中的每一个数
x
,寻找数组中的是否存在y
,y = target - x
- 由于每个元素不能被使用两次,所以第二层for循环,只能从
x
后面的元素中寻找y
- 如果在第二层遍历中找到数组中存在该
y
值,将x
和y
的下标存入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
数组, 求出y
,y = target - x
- 如果哈希表存在该
y
值,并且x
和y
的下标不同,将x
和y
的下标存入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];
}