LeeCode--Two Sum

来源:互联网 发布:皮鞋 知乎 编辑:程序博客网 时间:2024/04/30 18:27

题目:

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>::iterator it,jt;        int index1,index2;        vector<int> OutputIndex;        vector<int>::size_type number_size=numbers.size();        int Judge=0;        for(index1=1,it=numbers.begin()-1;it<numbers.end()-1;index1++,it++)        {            for(index2=1+index1,jt=numbers.begin();jt<numbers.end()-1;index2++,jt++)                {                    if((*jt+*it)==target)                    {                        Judge=1;                        break;                    }                }                                if(Judge==1)                    break;                        }        OutputIndex.push_back(index1);        OutputIndex.push_back(index2);                return OutputIndex;    }};


转载请注明作者:小刘

1 0
原创粉丝点击