题目:https://leetcode-cn.com/problems/two-sum/
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。
示例 1:
输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。
示例 2:
输入:nums = [3,2,4], target = 6
输出:[1,2]
示例 3:
输入:nums = [3,3], target = 6
输出:[0,1]
带注释的解法:
class Solution {
public int[] twoSum(int[] nums, int target) {
// 利用hash表可以将时间复杂度降为O(N)
HashMap<Integer,Integer> cache = new HashMap<Integer,Integer>();
// 遍历数组 公式:A+B = target
for(int i=0 ; i< nums.length;i++){
// 当前值
int A = nums[i];
// 要查找的另一个值
int B = target-nums[i];
if(cache.containsKey(B)){
// cache.get(B)为 B的下标,i为A的下标,顺序随意,题目不作要求
return new int[]{cache.get(B),i};
}
// 如果缓存里面没有,则先将数值和其下标索引放入hash表
cache.put(A,i);
}
// 如果没有则返回 0
return new int[0];
}
}