LeetCode Java 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。
给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。
你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。
方法一:遍历
看到这个题便想到数组遍历,就像这样。但运行时间比较长。
class Solution {
public int[] twoSum(int[] nums, int target) {
for(int i=0;i<nums.length;i++){
for (int j=i+1;j<nums.length;j++){
if(nums[i]+nums[j]==target)
return new int[]{i,j};
}
}
return nums;
}
}
方法二:HashMap
用哈希表进行两次迭代。这样运行时间就很快了。用哈希表速度快了,但还是很吃内存。
class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer,Integer> map=new HashMap<Integer,Integer>();
for(int i=0;i<nums.length;i++){
map.put(nums[i],i);
}
for(int i=0;i<nums.length;i++){
int n=target-nums[i];
if(map.containsKey(n) && map.get(n) != i){
return new int[]{i,map.get(n)};
}
}
throw new IllegalArgumentException("no");
}
}