题目描述
给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。
你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。
示例
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]
思路
-
第一种
嵌套for循环
- 第二种
将输入数组及其对应的下标放入HashMap,一层for循环,判断目标值a减去当前数组中值b后的结果c是否存在于数组中。
代码(第一种)
class Solution {
public int[] twoSum(int[] nums, int target) {
int j=nums.length;
int[] result=new int[2];
for(int i=0;i<j-1;i++){
for(int p=i+1;p<j;p++){
if(nums[i]+nums[p]==target){
result[0]=i;
result[1]=p;
break;
}
}
}
return result;
}
}
代码(第二种)
class Solution {
public int[] twoSum(int[] nums, int target) {
HashMap<Integer, Integer> map = new HashMap<>();
int[] result = new int[2];
for (int i = 0; i < nums.length; i++) {
map.put(nums[i], i);
}
for (int j = 0; j < map.size(); j++) {
Integer n = map.get(target - nums[j]);
if (n != null&&j!=n) {
result[0] = j;
result[1] = n;
break;
}
}
return result;
}
}