Description:
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
思路:本题要求寻找和为 target 的两个元素下标。考虑使用 map 结构,将数组保存至 unordered_map 中,存入一个元素则判断一次,直到所有的元素判断完。
C++ 代码
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
unordered_map<int,int> dic;
vector<int> result;
for(int i = 0; i < nums.size(); ++i) {
int numberToFind = target - nums[i];
if (dic.find(numberToFind) != dic.end()) {
result.push_back(dic[numberToFind]);
result.push_back(i);
return result;
}
dic[nums[i]] = i;
}
return result;
}
};
运行时间: 12ms
运行内存:9.5M
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于