LeeCode--Two Sum

时间:2014-10-23 16:28:01   收藏:0   阅读:353

题目:

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;
    }
};


转载请注明作者:小刘

原文:http://blog.csdn.net/u013018721/article/details/40396461

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!