给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。
你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。
示例:
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
解答:一遍哈希表
在进行迭代并将元素插入到表中的同时,我们还会回过头来检查表中是否已经存在当前元素所对应的目标元素。如果它存在,那我们已经找到了对应解,并立即将其返回。
复杂度分析:
时间复杂度:O(n), 我们只遍历了包含有 n 个元素的列表一次。在表中进行的每次查找只花费 O(1) 的时间。
空间复杂度:O(n), 所需的额外空间取决于哈希表中存储的元素数量,该表最多需要存储 n个元素。
代码
public int[] twoSum(int[] nums, int target) {
int length = nums.length;
if(length < 1){
return null;
}
Map<Integer, Integer> numMap = new HashMap<>();
int[] results = new int[2];
for (int i = 0; i < length; i++) {
int current = nums[i];
int key = target - current;
Integer otherIndex = numMap.get(key);
if (otherIndex != null) {
results[0] = otherIndex;
results[1] = i;
break;
}
numMap.put(current, i);
}
return results;
}
网友评论