两数之和
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
示例:
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
答案:
答案1:最简单暴力的方法(自己首先想到的方法)
1 class Solution { 2 public int[] twoSum(int[] nums, int target) { 3 for (int i = 0; i < nums.length; i++) { 4 for (int j = i + 1; j < nums.length; j++) { 5 if (nums[j] == target - nums[i]) { 6 return new int[] { i, j }; 7 } 8 } 9 } 10 throw new IllegalArgumentException("No two sum solution"); 11 } 12 }
方法二:两遍哈希
1 class Solution { 2 3 public int[] twoSum(int[] nums, int target) { 4 Map<Integer, Integer> map = new HashMap<>(); 5 for (int i = 0; i < nums.length; i++) { 6 map.put(nums[i], i); 7 } 8 for (int i = 0; i < nums.length; i++) { 9 int complement = target - nums[i]; 10 if (map.containsKey(complement) && map.get(complement) != i) { 11 return new int[] { i, map.get(complement) }; 12 } 13 } 14 throw new IllegalArgumentException("No two sum solution"); 15 } 16 }
方法三:一遍哈希
class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> 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");
}
}

浙公网安备 33010602011771号