力扣题解 1th 两数之和

Posted fromneptune

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了力扣题解 1th 两数之和相关的知识,希望对你有一定的参考价值。

1th 两数之和

  • 暴力枚举法

    直接两重循环暴力枚举,很慢。

    class Solution {
        public int[] twoSum(int[] nums, int target) {
            int[] ans = new int[2];
            for(int i = 0; i < nums.length; i++) {
                for(int j = i + 1; j < nums.length; j++) {
                    if(nums[i] + nums[j] == target) {
                        ans[0] = i;
                        ans[1] = j;
                        break;
                    }
                }
            }
            return ans;
        }
    }
    
  • 哈希表思想

    为原数组建立哈希索引表map,之后只需在哈希表中找到target-nums[i]的目标元素坐标即可。

    class Solution {
        public int[] twoSum(int[] nums, int target) {
            Map<Integer, Integer> map = new HashMap<Integer, Integer>();
            for(int i = 0; i < nums.length; i++) {
                if(map.containsKey(target - nums[i]) && map.get(target - nums[i])!=i) {
                    return new int[] {map.get(target - nums[i]), i};
                }
                map.put(nums[i], i);
            }
            throw new IllegalArgumentException("now two sum solution");
        }
    }
    

以上是关于力扣题解 1th 两数之和的主要内容,如果未能解决你的问题,请参考以下文章

力扣——两数之和

力扣——两数之和

❤️导图整理数组4: 三数之和 相比于 两数之和 的难点, 力扣15❤️

数组: 你还在用暴力法解 两数之和 吗? 力扣1

数组: 两数之和II有序数组, 多个有序, 思路全变, 力扣167

导图整理数组2: 你还在用暴力法解 两数之和 吗? 力扣1