Java 哈希表运用-LeetCode 1 Two Sum

时间:2021-07-24 05:48:07

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

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

You may assume that each input would have exactly one solution.

Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2

题意:给出无序数组A,找出两数之和等于目标数target

1.使用哈希表

2.转换思维,由两数之和转换成目标数与当前遍历数字的差

代码如下:

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