你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

力扣第一题

2021/11/21 22:53:51

从今天开始记录一下菜鸡刷力扣的历程!

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

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

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

自己写的暴力求解法(菜)时间复杂度O(n^2)

class Solution {
    public int[] twoSum(int[] nums, int target) {
        int [] res = 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){
                    res[0] = i;
                    res [1] = j;
                    return res;
                }
            }
        }
        return res;
    }
}

学习大神后的解法:时间复杂度为O(n)

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

总结:要多了解数据结构 利用HashMap 能够有效降低时间复杂度。