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

    class Solution {
    public:
        vector<int> twoSum(vector<int> &numbers, int target) {
             vector<int> result;
            result.resize(2);
            multimap<int,int> nummap;
            int i = 1;
            vector<int>::iterator begin = numbers.begin(),p = begin;
            for(;p != numbers.end();p++)
            {
                nummap.insert(pair<int,int>(*p,i));
                i++;
            }
    
            multimap<int,int>::iterator index_fir = nummap.begin(),index_sec = nummap.end();
            index_sec--;
            while(index_fir != index_sec)
            {
                if(((*index_fir).first + (*index_sec).first) == target)
                {
                    if((*index_fir).second > (*index_sec).second)
                    {
                        result[0] = (*index_sec).second;
                        result[1] = (*index_fir).second;
                        return result;
                    }else
                    {
                        result[1] = (*index_sec).second;
                        result[0] = (*index_fir).second;
                        return result;
                    }
                }else if(((*index_fir).first + (*index_sec).first) < target)
                {
                    index_fir++;
                }else
                {
                    index_sec--;
                }
            }
            return result;
        }
    };


    能力较水,写的不咋滴
  • 相关阅读:
    IDEA连接 Oracle数据库
    什么是混合云备份
    什么是阿里云ACA认证
    什么是阿里云ACE认证
    什么是轻量应用服务器
    什么是时序时空数据库TSDB
    什么是数据管理DMS
    什么是分析型数据库PostgreSQL版
    阿里云多端小程序
    阿里云云计算ACP专业认证考试
  • 原文地址:https://www.cnblogs.com/wangtengxiang/p/4200886.html
Copyright © 2011-2022 走看看