您的位置:首页 > 编程语言 > Java开发

leetcode 两数之和 java

2018-10-01 13:30 323 查看

给定一个整数数组和一个

目标值,找出数组中和为目标值的两个数。

你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。

示例:

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1]

import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;

public class Solution {
public static int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for(int i = 0;i<nums.length;i++){
int complement = target - nums[i];
if(map.containsKey(complement)){
return new int[] {map.get(complement),i};
}
map.put(nums[i],i);
}
throw new IllegalArgumentException("no two sum solution");
}

public static void main(String[] args) {
int [] a = new int[]{2,7,11,15};
int [] b = twoSum(a,9);
System.out.println(Arrays.toString(b));
}
}
[/code] 阅读更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: