题目描述
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
样例
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
算法
(哈希表) $O(n)$
以数字-下标为键值对将访问过的元素存储在哈希表中,如果哈希表中能找到target减去当前数字的结果,那就找到了和为target的一对数字
暴力枚举,$O(n^2)$
时间复杂度
扫描一遍哈希表,时间复杂度为$O(n)$,
存储所有数字空间复杂度为$O(n)$。
C++ 代码
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
vector<int> res;
unordered_map<int, int> hash;
for(int i = 0; i < nums.size(); i++){
int another = target - nums[i];
if(hash.count(another)){
res = vector<int>({hash[another], i});
break;
}
hash[nums[i]] = i; // 一遍哈希
}
return res;
}
};