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


發佈了307 篇原創文章 · 獲贊 65 · 訪問量 61萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章