Leetcode-1 两数之和

Leetcode-1 两数之和


1. 两数之和

给定一个整数数组nums和一个目标值target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
示例:

给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

哈希表

二、代码实现部分

1. C++`

class Solution {
public:
    vector<int> twoSum(vector<int>& nums, int target) {
 	unordered_map<int, int> m;
        vector<int> res = {-1, -1};
            for(int i = 0; i < nums.size(); i++){
       		if(m[target - nums[i]])
        		return {m[target - nums[i]] - 1, i};            
        	m[nums[i]] = i + 1; //C++中 unordered_map 未赋值查询为 0
    	}
    return res;
    }
};

2. JAVA

class Solution {
    public int[] twoSum(int[] nums, int target) {        
        Map<Integer, Integer> m = new HashMap<>();        
        for(int i = 0; i < nums.length; i++){            
    	    if(m.containsKey(target - nums[i]))                
    		    return new int[]{m.get(target - nums[i]), i};
            m.put(nums[i],i);        
        }        
    return new int[0];    
    }
}

总结

时间复杂度:O(N)
空间复杂度:O(N)