• Java [leetcode 1] Two Sum


    小二终于开通博客了,真是高兴。最近在看Java,所以就拿leetcode练练手了。以后我会将自己解体过程中的思路写下来,分享给大家,其中有我自己原创的部分,也有参考别人的代码加入自己理解的部分,希望大家看了多提意见,一块加油。

    问题描述:

    Given an array of integers, find two numbers such that they add up to a specific target number.

    The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

    You may assume that each input would have exactly one solution.

    Input: numbers={2, 7, 11, 15}, target=9
    Output: index1=1, index2=2

    解体思路:

    设立一个HashMap,其中键值key为数组中数值,对应值value则为该数组下标值。

    从数组最开始往后遍历,每次求出该值对应target-numbers[i]的值在HashMap中是否存在。如果该值已经存在,那么则找到两个值的和为target值,返回即可;如果该值不存在,则把(numbers[i], i)放入HashMap中。

    整个算法的时间复杂度为O(n)。

    代码如下:

    import java.util.*;
    
    public class Solution {
        public int[] twoSum(int[] numbers, int target) {
            
            Map<Integer, Integer> map = new HashMap<Integer, Integer>(numbers.length * 2);
            int[] results = new int[2];
            
            for(int i = 0; i < numbers.length; i++){
                Integer temp1 = map.get(target - numbers[i]);
                if(temp1 == null){
                    map.put(numbers[i], i);
                }
                else{
                    results[0] = i + 1;
                    results[1] = temp1 + 1;
                    if(results[0] > results[1]){
                        int temp2 = results[0];
                        results[0] = results[1];
                        results[1] = temp2;
                    }
                    return results;
                }
            }
            
            return null;
            
        }
    }
    
  • 相关阅读:
    UVA11825 Hackers' Crackdown
    UVA 11346 Probability
    Codeforces 12 D Ball
    bzoj 4766: 文艺计算姬
    Codeforces 757 F Team Rocket Rises Again
    [HAOI2011] problem C
    Atcoder 3857 Median Sum
    bzoj4399 魔法少女LJJ
    bzoj2638 黑白染色
    bzoj4197 [Noi2015]寿司晚宴
  • 原文地址:https://www.cnblogs.com/zihaowang/p/4455763.html
Copyright © 2020-2023  润新知