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;
            
        }
    }
    
  • 相关阅读:
    Sunday算法
    砝码称重 洛谷 1441
    树秀于林风必摧之——线段树
    常用stl(c++)
    Vue 根组件,局部,全局组件 | 组件间通信,案例组件化
    Win下JDK的安装和简单使用教程
    ubuntu服务器远程连接xshell,putty,xftp的简单使用教程
    ubuntu下安装pdo和pdo_mysql扩展
    服务器和域名的简单个人认知
    对大一一年的总结和对大二的规划
  • 原文地址:https://www.cnblogs.com/zihaowang/p/4455763.html
Copyright © 2011-2022 走看看