1.Two Sum

Source: Internet
Author: User

Topics

Given an array of integers, find the numbers such that they add up to a specific target number.

The function twosum should return indices of the numbers such that they add up to the target, where index1 must is Les S than Index2. Please note that your returned answers (both Index1 and INDEX2) is not zero-based.

You may assume this each input would has exactly one solution.

Input: numbers={2, 7, one, target=9
Output: index1=1, index2=2


Thinking of solving problems

Use brute force solution. Time Complexity O (n^2), spatial complexity O (1).

Use the hash table to store the number of accesses. Time complexity O (n), spatial complexity O (n). √


Code

Int[] Twosum (int[] nums, int target) {Hashmap<integer, integer> HM = new Hashmap<integer, integer> (); int[] Ind Ex=new int[2];for (int i=0;; i++) {if (Hm.containskey (Target-nums[i])) {index[0] = Hm.get (Target-nums[i]) +1;index[1] = I+1;break;} Else{hm.put (Nums[i],i);}} return index;}


Run results
Submit Time Status Run Time Language
Minutes ago Accepted 380 ms Java

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

1.Two Sum

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.