首页 > 代码库 > Two Sum
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
感觉这个题限制太多了,可能会存在重复关键字,且可能是两个重复关键字之和等于target,这种情况下,只能一个关键字取前面的,一个取后面的,不能使两个的索引下标相同。又因为题目保证这样的两个数绝对存在,所以,可以直接让迭代器后移一位,也是相同的关键字。
C++代码实现:
#include<map>#include<iostream>#include<vector>using namespace std;class Solution{public: vector<int> twoSum(vector<int> &numbers, int target) { multimap<int,int> sum; size_t i=0; for(i=0; i<numbers.size(); i++) sum.insert({numbers[i],i}); auto map_it=sum.begin(); while(map_it!=sum.end()) { int tmp=target-map_it->first; auto iter=sum.find(tmp); if(iter!=sum.end()) { if(map_it==iter) iter++; return vector<int> {min(map_it->second+1,iter->second+1),max(map_it->second+1,iter->second+1)}; } map_it++; } return vector<int>(); }};int main(){ vector<int> vec={0,4,0,3,0}; Solution s; vector<int> result=s.twoSum(vec,0); for(auto a:result) cout<<a<<" "; cout<<endl;}
运行结果:
可以看看:http://www.acmerblog.com/leetcode-two-sum-5223.html
Two Sum
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。