</pre><span style="font-size:18px;">Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.You may assume that each input would have exactly one solution.Input: numbers={2, 7, 11, 15}, target=9Output: index1=1, index2=2</span><pre name="code" class="cpp">vector<int> twoSum(vector<int>& nums, int target) {
vector<int> ret;
unordered_map<int, int> hashMap;
for (int i = 0; i < nums.size(); ++i)
{
int numberToFind = target - nums[i];
if (hashMap.find(numberToFind) != hashMap.end())//the key is number,the value is the index of the vector elements
{
ret.push_back(hashMap[numberToFind] + 1);
ret.push_back(i + 1);
return ret;
}
hashMap[nums[i]] = i;
}
}
}
Two Sum
最新推荐文章于 2024-08-26 10:01:55 发布