1. Two Sum

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.

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • Given an array of integers, return indices of the two num...
    xxx亦凡桑阅读 407评论 0 0
  • 我家南边有条小南河,是沂河的下游干流,记得我小的时候,这河水量颇大,每当大雨淋漓的下几天或者到上游开坝泄水时,小南...
    马龙白兰度阅读 266评论 0 0
  • 公司:宁波大发化纤有限公司 姓名:冯玉停 期数:六项精进224期感谢二组学员,234期感谢三组志工,260期感谢一...
    尘埃wyzh阅读 291评论 0 0
  • 等一个人太长很久, 深到让我的心生了锈, 爬了尘, 忘了情。 夜夜迷离, 怀念以往。 早知是劫, 无畏抢夺。 你对...
    阿俊xi阅读 256评论 0 1

友情链接更多精彩内容