题目描述
给定一个整数数组 nums
和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
样例
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
算法分析
哈希表
- 用哈希表存储前面遍历过的数,当枚举到当前数时,若哈希表中存在
target - nums[i]
的元素,则表示已经找到符合条件的两个数,枚举完当前数再把当前数放进哈希表中
时间复杂度 $O(n)$
Java 代码
class Solution {
public int[] twoSum(int[] nums, int target) {
HashMap<Integer,Integer> map = new HashMap<Integer,Integer>();
for(int i = 0;i < nums.length;i ++)
{
int other = target - nums[i];
if(map.containsKey(other)) return new int[]{map.get(other),i};
map.put(nums[i],i);
}
return new int[]{-1,-1};
}
}