加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
两数之和.java 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
package cn.tan.day01.demo01;
import java.util.HashMap;
public class Test02 {
//求两数之和
// 给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target  的那 两个 整数,并返回它们的数组下标。
//
// 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
//
// 你可以按任意顺序返回答案。
//  
// 示例 1:
//
// 输入:nums = [2,7,11,15], target = 9
// 输出:[0,1]
// 解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。
//
// 来源:力扣(LeetCode)
// 链接:https://leetcode-cn.com/problems/two-sum
// 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
public static int[] twoSum(int[] nums, int target) {
int left,right;
int []arr=new int[2];
for(left=0;left<nums.length;left++){
for(right=left+1;right<nums.length;right++){
if(nums[left]+nums[right]==target){
arr[0]=left;
arr[1]=right;
return arr;
}
}
}
return new int[0];
}
public static int[] twoSum2(int[] nums, int target){
HashMap<Integer,Integer> hm=new HashMap<>();
for (int i = 0; i < nums.length; i++) {
hm.put(nums[i],i);
}
for (int i = 0; i < nums.length; i++) {
int other=target-nums[i];
if(hm.containsKey(other)&&hm.get(other)!=i){
return new int[]{i,hm.get(other)};
}
}
return new int[]{-1,-1};
}
public static void main(String[] args) {
int [] nums={3,3,11,15};
int []arr1=new int[2];
arr1=twoSum2(nums,6);
for (int i = 0; i < 2; i++) {
System.out.print(arr1[i]+" ");
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化