zoukankan      html  css  js  c++  java
  • 【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!");
        }
  • 相关阅读:
    Xpath语法与lxml库的用法
    Selenium--使用参考
    PhantomJS的替代品--无头浏览器(Headless Chrome)
    为什么只有一个元素的tuple要加逗号?
    反爬利器--设置代理服务器
    LeetCode 221. 最大正方形 | Python
    LeetCode 572. 另一个树的子树 | Python
    LeetCode 98. 验证二叉搜索树 | Python
    LeetCode 45. 跳跃游戏 II | Python
    LeetCode 25. K 个一组翻转链表 | Python
  • 原文地址:https://www.cnblogs.com/qxlxi/p/12860825.html
Copyright © 2011-2022 走看看