题干
给定一个整数数组 nums
和一个整数目标值 target
,请你在该数组中找出 和为目标值 target
的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
方法一:暴力求解 时间复杂度O(n^2)
class Solution {
public int[] twoSum(int[] nums, int target) {
int n = nums.length;
for(int i=0;i<n;i++){
for(int j=i+1;j<n;j++){
if(nums[i]+nums[j]==target)
return new int[]{i,j};
}
}
return new int[0];// 返回长度为0的空数组
}
}
方法二:(只针对有序的数组)
class Solution {
public int[] twoSum(int[] nums, int target) {
Arrays.sort(nums); // 排序,如原数组无序,排序后下标打乱,结果就会出错
// 下面的方法适合有序的数组
int begin = 0;
int end = nums.length - 1;
while(begin < end){
if(nums[begin] + nums[end] == target)
return new int[]{begin,end};
if(nums[begin] + nums[end] < target)
begin += 1;
else
end -= 1;
}
return new int[0];// 返回长度为0的空数组
}
}
方法三:hash
class Solution {
public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for(int i = 0; i< nums.length; i++) {
if(map.containsKey(target - nums[i])) {
return new int[] {map.get(target-nums[i]),i};
}
map.put(nums[i], i);
}
return new int[] {-1,-1};
}
}