-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTwoSum.java
66 lines (62 loc) · 2.66 KB
/
TwoSum.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package sum;
import java.util.HashMap;
/**
* Created by Yang on 2017/10/4.
************************************************************************************************
* 1. Two Sum
* https://leetcode.com/problems/two-sum/
* 找到和为target的数
* 15. 3Sum(数组中,和为target的3个数,先排序,再用双指针)
* 16. 3Sum Closest(数组中,和最接近于target的3个数,输出其和,先排序,再用双指针)
* 18. 4Sum(数组中,和为target的4个数,先排序,再依次转化为3Sum和2Sum问题)
* 454. 4Sum II(4个数组中,分别取1个数,其中和为0的取法的个数,转换为2组2个数的和互为相反数,用HashMap)
* 167. Two Sum II - Input array is sorted(排序数组中,和为target的两个数,用双指针)
* 653. Two Sum IV - Input is a BST(二叉查找树中,和为target的两个数,用HashSet)
************************************************************************************************
* 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:
* Input: nums = [2, 7, 11, 15], target = 9,
* Output: [0, 1].
* Explanation:
* nums[0] + nums[1] = 2 + 7 = 9
************************************************************************************************
*/
public class TwoSum {
public int[] twoSum(int[] nums, int target) {
// use a map to find a num's index
HashMap<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.");
}
public int[] twoSumBruteForce(int[] nums, int target) {
for(int i = 0; i < nums.length - 1; i++) {
for(int j = i+1; j < nums.length; j++) {
if(nums[i] + nums[j] == target) {
return new int[]{i,j};
}
}
}
throw new IllegalArgumentException("No two sum solution");
}
public static void main(String[] args) {
TwoSum twoSum = new TwoSum();
for (int n : twoSum.twoSum(new int[]{2,7,11,15}, 9)) {
System.out.print(n + " ");
}
System.out.println(" <---> 0 1");
for (int n : twoSum.twoSum(new int[]{2,2}, 4)) {
System.out.print(n + " ");
}
System.out.println(" <---> 0 1");
}
}