标签:
Two Sum
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=9
Output: index1=1, index2=2
思路:hash
class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { unordered_map<int, int> hashmap; vector<int> result(2,0);//初始化指定大小 节省时间 int size = nums.size(); unordered_map<int, int>::iterator it; for (int i = 0;i < size;i++) { it = hashmap.find(target - nums[i]); if (it != hashmap.end()&& it->second!=i) { result[1]=(++i); result[0]=(++(it->second)); return result; } hashmap[nums[i]] = i; } return result; } };
标签:
原文地址:http://www.cnblogs.com/dark89757/p/4816476.html