【leetcode】1、两数之和

1.两数之和

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

你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

示例:

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9所以返回 [0, 1]

1.暴力破解

thinking:通过两次loop 就可以找到,但是时间复杂度为O(n^2)

public int[] twoSum(int[] nums, int target) {
        for (int i = 0; i < nums.length; i++) {
            for (int j = i+1; j < nums.length; j++) {
                if (target-nums[i] == nums[j]){
                    return new int []{i,j};
                }
            }
        }
        throw  new IllegalArgumentException("no find two sum !");
    }

2.哈希表

thiking:将数组中元素值作为key 存储到hashmap中 然后取寻找。遍历就可以了。

时间复杂度:O(n)

 public int[] twoSum(int[] nums, int target) {
        Map<Integer,Integer> hashMap = new HashMap<>();
        for (int i = 0; i < nums.length; i++) {
            hashMap.put(nums[i],i);//将值作为key 可以保证数据不会出现重复
        }
​
        for (int i = 0; i < nums.length ; i++) {
            int num = target - nums[i];
            if (hashMap.containsKey(num) && hashMap.get(num)!=i){
                return new int []{i,hashMap.get(num)};
            }
        }
        throw  new IllegalArgumentException("no find!");
    }
原文地址:https://www.cnblogs.com/qxlxi/p/12860825.html