zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    请求测试——Fiddler2工具(可以测试POST和Get)
    VS自动注释——GhostDoc
    【转】.NET MVC控制器分离到类库的方法
    git工具的安装和使用
    Nosql的实际应用场景
    【转】为什么要用单例模式?
    【转】C#详解值类型和引用类型区别
    【转】SQL Server 2008 数据库同步的两种方式 (发布、订阅)
    加密解密大汇总
    Eclipse mybatis中XML的自动提示
  • 原文地址:https://www.cnblogs.com/wuchanming/p/4101835.html
Copyright © 2011-2022 走看看