美文网首页
1. Two Sum

1. Two Sum

作者: BadGirl_TONG | 来源:发表于2018-01-31 10:08 被阅读0次

    Given an array of integers, return indices of the two numbers such that they add up to a specific target.

    You may assume that each input would have exactly one solution, and you may not use the same element twice.

    Example:

    Given nums = [2, 7, 11, 15], target = 9,Because nums[0] + nums[1] = 2 + 7 = 9,return [0,1].

    Solution:

    Approach #1 (Brute Force) [Accepted]

    The brute force approach is simple. Loop through each element xx and find if there is another value that equals to target - xtarget−x.

    publicint[]twoSum(int[]nums,inttarget){for(inti=0;i

    Complexity Analysis

    Time complexity : O(n^2)O(n​2​​). For each element, we try to find its complement by looping through the rest of array which takes O(n)O(n) time. Therefore, the time complexity is O(n^2)O(n​2​​).

    Space complexity : O(1)O(1).

    Approach #2 (Two-pass Hash Table) [Accepted]

    To improve our run time complexity, we need a more efficient way to check if the complement exists in the array. If the complement exists, we need to look up its index. What is the best way to maintain a mapping of each element in the array to its index? A hash table.

    We reduce the look up time from O(n)O(n) to O(1)O(1) by trading space for speed. A hash table is built exactly for this purpose, it supports fast look up in near constant time. I say "near" because if a collision occurred, a look up could degenerate to O(n)O(n) time. But look up in hash table should be amortized O(1)O(1) time as long as the hash function was chosen carefully.

    A simple implementation uses two iterations. In the first iteration, we add each element's value and its index to the table. Then, in the second iteration we check if each element's complement (target - nums[i]target−nums[i]) exists in the table. Beware that the complement must not be nums[i]nums[i] itself!

    publicint[]twoSum(int[]nums,inttarget){Mapmap=newHashMap<>();for(inti=0;i

    Complexity Analysis:

    Time complexity : O(n)O(n). We traverse the list containing nn elements exactly twice. Since the hash table reduces the look up time to O(1)O(1), the time complexity is O(n)O(n).

    Space complexity : O(n)O(n). The extra space required depends on the number of items stored in the hash table, which stores exactly nn elements.

    Approach #3 (One-pass Hash Table) [Accepted]

    It turns out we can do it in one-pass. While we iterate and inserting elements into the table, we also look back to check if current element's complement already exists in the table. If it exists, we have found a solution and return immediately.

    publicint[]twoSum(int[]nums,inttarget){Mapmap=newHashMap<>();for(inti=0;i

    Complexity Analysis:

    Time complexity : O(n)O(n). We traverse the list containing nn elements only once. Each look up in the table costs only O(1)O(1) time.

    Space complexity : O(n)O(n). The extra space required depends on the number of items stored in the hash table, which stores at most nn elements.

    相关文章

      网友评论

          本文标题:1. Two Sum

          本文链接:https://www.haomeiwen.com/subject/jokkzxtx.html