Question
Given an array of integer, return indices of the two numbers such that they add up to a specific target.
Note
- 使用HashMap,key=nums[i], value=i坎弯。
- 遍歷一次回窘,target - nums[i]不在HashMap中鸟赫,則將nums[i]添加進(jìn)HashMap坞生;
Extension
- 如果數(shù)組有序煮纵,可以使用雙指針法匪凉。頭尾向中間查找式矫。
- 如果數(shù)組沒序,則使用HashMap方法预明。
- 如果是three sum缩赛,則可以先固定一個數(shù),然后使用two sum中的方法撰糠。
Solution
public int[] twoSum(int[] nums, int target) {
int[] res = new int[2];
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
if (map.containsKey(target - nums[i])) {
res[1] = i;
res[0] = map.get(target - nums[i]);
} else {
map.put(nums[i], i);
}
}
return res;
}