Featured image of post 两数之和

两数之和

git设置、取消代理

给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target  的那 两个 整数,并返回它们的数组下标。

你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。

你可以按任意顺序返回答案。

示例 1:

输入:nums = [2,7,11,15], target = 9 输出:[0,1] 解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。

暴力枚举法

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
public static int[] twoSum(int[] nums, int target) {
    int n = nums.length;
    for(int i=0; i<n; ++i){
        for(int j=i+1; j<n; ++j){
            if(nums[i] + nums[j] == target){
                return new int[]{i, j};
            }
        }
    }
    return new int[0];
}

复杂度分析

  • 时间复杂度:O(N^2),其中 N 是数组中的元素数量。最坏情况下数组中任意两个数都要被匹配一次。
  • 空间复杂度:O(1)

哈希表

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
public static int[] twoSum1(int[] nums, int target) {
    Map<Integer, Integer> hashtable = new HashMap<Integer, Integer>();
    for(int i=0; i<nums.length; ++i){
        if(hashtable.containsKey(target - nums[i])){
            return new int[]{hashtable.get(target - nums[i]), i};
        }
        hashtable.put(nums[i], i);
    }
    return new int[0];
}

复杂度分析:

  • 时间复杂度:O(N), 其中 N 是数组中的元素数量。对于每一个元素 x,我们可以 O(1) 地寻找 target - x。
  • 空间复杂度:O(N),其中 N 是数组中的元素数量。主要为哈希表的开销。

作者:LeetCode-Solution 链接:https://leetcode.cn/problems/two-sum/solution/liang-shu-zhi-he-by-leetcode-solution/ 来源:力扣(LeetCode) 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

Licensed under CC BY-NC-SA 4.0
Built with Hugo
主题 StackJimmy 设计