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

  • 相关阅读:
    k8s 集群节点重启后etcd Unhealthy 解决
    no matches for kind “Deployment” in version "extensions/v1beta1 问题解决
    go web 读书笔记 (go 与 web 应用)
    Linux设置ssh超时时间
    C++中继承方式
    C++中类中范围解析运算符::和点运算符(.)
    C++ 中类与结构体的区别
    C++中. 与 -> 运算符的区别
    C++之字符串
    C++之数组
  • 原文地址:https://www.cnblogs.com/wuchanming/p/4101835.html
Copyright © 2011-2022 走看看