LeetCode-001 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
【題意】
1.与えられたリストから2つの数を探し出し、この2つの数の和は与えられたtarget値と同じであり、この2つの値の位置を返す(相対的な順序を保つ)
2.与えられたテストケースは、一意の解が1つしかないことを保証する
【考え方】
1.バインド値と対応する位置複雑度O(n)
2.値を昇順に並べ替える複雑度O(nlogn)
3.2つのポインタp 1,p 2でそれぞれ前後2方向からtargetに近づく.
2つのポインタの和がtargetより小さい場合、p 1++
2つのポインタの和がtargetより大きい場合、p 2−
【コード】
struct Node{
    int index;
    int value;
    Node(){};
    Node(int i, int v):index(i), value(v){};
};

bool compare(const Node &n1, const Node &n2){
    return n1.value < n2.value;
}


class Solution {
public:
    vector<int> twoSum(vector<int> &numbers, int target) {
        vector<Node> nodes;
        for(int i=0; i<numbers.size(); i++){
            nodes.push_back(Node(i+1, numbers.at(i)));
        }
        sort(nodes.begin(), nodes.end(), compare);
        
        int p1 = 0;
        int p2 = nodes.size() - 1;
        vector<int> indexs;
        while(p1 < p2){
            int sum = nodes.at(p1).value + nodes.at(p2).value;
            if(sum == target){
                indexs.push_back(min(nodes.at(p1).index, nodes.at(p2).index));
                indexs.push_back(max(nodes.at(p1).index, nodes.at(p2).index));
                break;
            }
            else{
                if(sum < target) p1++;
                else p2--;
            }
        }
        return indexs;
    }
};