首页 > 其他 > 详细

力扣(LeetCode)做题记录

时间:2021-09-24 17:51:37      阅读:41      评论:0      收藏:0      [点我收藏+]

(1) 两数之和
网址:https://leetcode-cn.com/problems/two-sum/
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。

class Solution {
    public int[] twoSum(int[] nums, int target) {
        HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
        int[] arr = new int[2];
        int i = 0;
        for(i = 0;i < nums.length; i++){
            map.put(nums[i], i);
        }
        for(i=0;i<nums.length;i++){
            int diff=target-nums[i];
            //containsKey() 方法检查 hashMap 中是否存在指定的 key 对应的映射关系。
            //获取指定 key 对应对 value
            if(map.containsKey(diff) && map.get(diff) != i){
                arr[0]=i;
                arr[1]=map.get(diff);
                return arr;
            }
        }
        return arr;
    }
}

力扣(LeetCode)做题记录

原文:https://www.cnblogs.com/LiuYUE-fusheng/p/15311746.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!