LeetCode(1):两数之和 Two Sum(Java)

234 篇文章 1 订阅
177 篇文章 0 订阅
这篇博客介绍了如何用Java解决LeetCode的两数之和问题,包括两种解法:有序数组的头尾指针逼近和哈希表查找。通过哈希表可以在O(1)时间内找到目标值的对应下标,实现高效求解。
摘要由CSDN通过智能技术生成

2019.4.25 #程序员笔试必备# LeetCode 从零单刷个人笔记整理(持续更新)

这道题有两种做法:

1.如果输入数组有序,可以用头尾指针逼近求解,当两数之和比target大时,end–;当两数之和比target小时,begin++;直到两数之和等于target,进行返回。

2.利用哈希表,哈希表记录每一个元素的下标,当访问一个新元素num时,查询哈希表中是否存在target-num,若存在,直接利用哈希表获得其坐标,进行返回。


传送门:两数之和

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

示例:
给定 nums = [2, 7, 11, 15], target = 9
因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]


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

/**
 *
 * Given an array of integers, return indices of the two numbers such that they add up to a specific target.
 * You may assume that each input would have exactly one solution, and you may not use the same element twice.
 * 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。
 * 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。
 *
 */

public class TwoSum {

    //排序找首尾o(nlgn)
    public int[] twoSum2(int[] nums, int target) {
        int[] newnums = Arrays.copyOf(nums, nums.length);
        Arrays.sort(newnums);
        int begin = 0;
        int end = newnums.length - 1;
        while(begin <= end){
            if(newnums[begin] + newnums[end] > target)
                end--;
            else if(newnums[begin] + newnums[end] < target)
                begin++;
            else
                break;
        }
        int[] result = new int[2];
        for(int i = 0; i < nums.length; i++){
            if(nums[i] == newnums[begin]) {
                result[0] = i;
                break;
            }
        }
        for(int i = nums.length - 1; i >= 0; i--){
            if(nums[i] == newnums[end]) {
                result[1] = i;
                break;
            }
        }
        return result;
    }

    //两次哈希表o(n)
    public int[] twoSum1(int[] nums, int target){
        HashMap<Integer, Integer> map = new HashMap<>();
        //记录元素下标,如果存在相同元素,记录后一个元素的下标
        for(int i = 0; i < nums.length; i++){
            map.put(nums[i], i);
        }
        for(int i = 0 ; i < nums.length; i++){
            int temp = target - nums[i];
            //该元素不能是nums[i]本身,如果存在两个相同元素,由于数组从前往后遍历,不会取到i本身
            if(map.containsKey(temp) && (map.get(temp) != i))
                return new int[]{i, map.get(temp)};
        }
        throw new IllegalArgumentException("No two sum solution");
    }

    //一次哈希表o(n)
    public int[] twoSum(int[] nums, int target){
        HashMap<Integer, Integer> map = new HashMap<>();
        //在记录下标的同时回访之前已经加入的元素
        for(int i = 0; i < nums.length; i++){
            int temp = target - nums[i];
            if(map.containsKey(temp))
                return new int[]{map.get(temp), i};
            else
                map.put(nums[i], i);
        }
        throw new IllegalArgumentException("No two sum solution");
    }
}



#Coding一小时,Copying一秒钟。留个言点个赞呗,谢谢你#

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值