首页 > 学院 > 开发设计 > 正文

leetcode 1. Two Sum

2019-11-10 19:02:36
字体:
来源:转载
供稿:网友

题目

给定一个数组,和一个目标值,返回数组中两个和为目标值的下标,假设结果只有一个

分析

使用hashMap存储数组元素值和下标,当map中含有target-num[i]的键时,说明已查找到。

public int[] twoSum(int[] nums, int target) { int[] re=new int[2]; HashMap<Integer, Integer> map = new HashMap<>(); for(int i=0;i<nums.length;i++){ if(map.containsKey(target-nums[i])){ re[0]=map.get(target-nums[i]); re[1]=i; return re; }else{ map.put(nums[i], i); } } return re; }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表