zoukankan      html  css  js  c++  java
  • 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;
            
        }
    }
    
  • 相关阅读:
    SQL 查询第n条到第m条的数据
    Linq 中查询一个表中指定的字段
    归并排序与逆序对
    补码拾遗
    堆排序
    It is time to cut the Gordian Knot!
    蛋疼
    [引]Microsoft Visual Studio .NET 2005 预发行版
    关于VS2005中自动生成TableAdapter的事务处理
    关于释放ASPNET进程的内存占用问题.
  • 原文地址:https://www.cnblogs.com/zihaowang/p/4455763.html
Copyright © 2011-2022 走看看