首页 > 其他 > 详细

Two Sum

时间:2015-02-13 22:20:52      阅读:374      评论:0      收藏:0      [点我收藏+]

这道题目看起来很简单,但是用简单的枚举超时。然后用hash存储,这样访问任何元素的时间复杂度为常数。但是需要对重复元素做特殊处理。

 1 class Solution {
 2 public:
 3     vector<int> twoSum(vector<int> &numbers, int target) {
 4 
 5         vector<int> v;
 6         map<int,int> m;
 7         int n = numbers.size();
 8         for(int i=0;i<n;i++)
 9             m.insert(pair<int,int>(numbers[i],i+1));
10 
11         for(int j=0;j<n;j++)
12           {
13               map<int,int>::iterator it;
14               it = m.find(target-numbers[j]);
15               if(it->first == target-numbers[j])
16               {
17                  for(int i=j+1;i<n;i++)
18                     if(numbers[i]==target-numbers[j])
19                  {
20                      v.push_back(j+1);
21                      v.push_back(i+1);
22                      break;
23                  }
24               }
25               if(it!=m.end()&&it->second!=j+1)
26              {
27                 v.push_back(j+1);
28                 v.push_back(it->second);
29                 break;
30              }
31           }
32 
33             return v;
34 
35     }
36 };

 

Two Sum

原文:http://www.cnblogs.com/ZhangYushuang/p/4290914.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!