题目描述
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
样例
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
算法1
(暴力枚举) $O(n^2)$
两遍迭代
时间复杂度
参考文献
C++ 代码
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
int n = nums.size();
vector<int> result;
for (int i = 0; i < n-1; i ++){
for (int j = i+1; j < n; j++){
if (target == nums[i] + nums[j]){
result.push_back(i);
result.push_back(j);
break;
}
}
}
return result;
}
};
算法2
(暴力枚举) $O(n)$
第一遍遍历,建立hash表
第二遍遍历,搜索target - nums[0] 在不在数组中
等着看大神的hash算法怎么写????
时间复杂度
$O(n)$
参考文献
C++ 代码
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
int n = nums.size();
vector<int> result;
int another;
unordered_map<int, int> hash;
for (int i = 0; i < n; i ++){
another = target - nums[i];
if (hash.count(another)){
result = vector<int>({hash[another], i});
}
hash[nums[i]] = i;
}
return result;
}
};