2014年2月8日星期六

LeetCoder - 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 

public class Solution {
    public int[] twoSum(int[] numbers, int target) {
        // Start typing your Java solution below
        // DO NOT write main() function
        int[] ret = null;
        if(numbers==null || numbers.length<2) {
            return ret;
        }
        HashMap<Integer, HashSet<Integer>> map = new HashMap<Integer, HashSet<Integer>>();
        for(int i=0;i<numbers.length;i++) {
            int num = numbers[i];
            HashSet<Integer> set = map.get(num);
            if(set==null) {
                set = new HashSet<Integer>();
                map.put(num, set);
            }
            set.add(i);
        }
     
        for(int i = 0;i<numbers.length;i++) {
            int num = numbers[i];
            HashSet<Integer> set1 = map.get(num);
            int num2 = target-num;
            HashSet<Integer> set2 = map.get(num2);
            if(set2!=null) {
                ret = new int[2];
                for(Integer s1 : set1) {
                    for(Integer s2 : set2) {
                        if(s1!=s2) {
                             if(s1>s2) {
                                ret[0] = s2 + 1;
                                ret[1] = s1 + 1;
                            } else {
                                ret[1] = s2 + 1;
                                ret[0] = s1 + 1;
                            }
                            return ret;
                        }
                    }
                }
            }
        }
        return ret;
    }
}

public class Solution {
    public int[] twoSum(int[] numbers, int target) {
        int[] ret = new int[2];
        HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
        for(int i=0;i<numbers.length;i++) {
            int n = numbers[i];
            int n2 = target - n;
            Integer idx = map.get(n2);
            if(idx!=null) {
                ret[0] = idx + 1;
                ret[1] = i + 1;
                return ret;
            }
            map.put(n, i);
        }
        return ret;
    }
}


class Solution {
public:
    vector<int> twoSum(vector<int>& nums, int target) {
        vector<int> ret;
        unordered_map<int, int> hash;
        for(int i=0;i<nums.size();i++) {
            if(hash.find(target-nums[i])!=hash.end()) {
                return vector<int>{hash[target-nums[i]]+1, i+1};
            }
            hash[nums[i]] = i;
        }
    }
};

没有评论:

发表评论