【LeetCode】1. 两数之和


解题思路

使用哈希表存储数组元素的值和索引,遍历数组,对于每一个nums[i],都要先从哈希表中查找是否存在target - nums[i],如果存在就直接返回结果,如果不存在就将当前元素的值和索引存入哈希表。

代码

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

复杂度分析

  • 时间复杂度:O(N),其中N是数组中的元素数量,一次遍历的时间复杂度为O(N)。
  • 空间复杂度:O(N),其中N是数组中的元素数量,主要为哈希表的空间消耗。
posted @ 2021-02-09 23:44  MacZhen  阅读(59)  评论(0编辑  收藏  举报