HashMap的时间复杂度问题(待续)

在leecode上做的第一道题,求两数之和的方法,
两数之和-from leecode
除了暴力循环法之外,给出的答案是这样的

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

这个就要求HashMap的查找操作复杂度是o(1),真的是这样吗?需要进一步学习一下。

你可能感兴趣的:(algorithm)