zoukankan      html  css  js  c++  java
  • 【LeetCode 1】算法修炼 --- Two Sum

    Question:

    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

     

    Question Tags:

    Array , Hash Table

     

    New Words:

    add up to:总计达

    indices:index的复数

    zero-based:从零开始的

     

    Solution Ideas:

     

    思路一:

    两层遍历法:对于数组中的某一个数,对它及他以后的某个数求和,若和与target相等,则可确定这两值为所找的。此方式时间复杂度为O(nlogn).

    思路二:

    HashMap--Value-key法:求a+b=target,也就是判断a和target-a是否都在这个数组中,

               遍历判断map中是否有数组中的某个值target-a,如果没有,则把a的key以value作为key存到map中,

               如果有,则所求的a,b得出来了。所求的索引值也就是a,b的索引值

               此方法时间复杂度为O(n)

    两种方法都可以确保index1<index2.

    只考虑时间复杂度的情况下,由O(n)<O(nlogn)知,思路二的效率更高。

     

    Solution Java code:

    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.Map;
    
    
    public class TwoSum {
    
        public static void main(String[] args) {
            int[] numbers={2, 7, 11, 15};
            int target = 9;
            int[] twoSum = twoSum(numbers,target);
            System.out.println("two sum indices are " + twoSum[0] + "  and  " + twoSum[1]);
            
            int[] twoSum2 = twoSum2(numbers,target);
            System.out.println("two sum indices are " + twoSum2[0] + "  and  " + twoSum2[1]);
        }
        
    //思路1
    public static int[] twoSum(int[] numbers, int target) { int i,j,sum; int[] indices = new int[2]; outfor:for (i=0;i<numbers.length;i++){ for (j=i+1;j>i && j<numbers.length;j++){ sum = numbers[i]+numbers[j]; if (sum == target){ indices[0]=i+1; indices[1]=j+1; break outfor; } } } return indices; }
      //思路2
    public static int[] twoSum2(int[] numbers, int target) { int[] indices = new int[2]; Map<Integer,Integer> map = new HashMap<Integer,Integer>(); for (int i=0;i<numbers.length;i++){ if (map.containsKey(target-numbers[i])){ indices[0]=map.get(target-numbers[i]); indices[1]=i+1; break; } map.put(numbers[i],i+1); } return indices; } }

     思路2也可以使用hash table表达:

    public static int[] twoSum3(int[] numbers, int target) {
    
            int[] indices = new int[2];
            
    //        Map<Integer,Integer> map = new HashMap<Integer,Integer>();
            Hashtable<Integer, Integer> hashtable = new Hashtable<Integer, Integer>();
            
            for (int i=0;i<numbers.length;i++){
                Integer num = hashtable.get(numbers[i]);
                if (num == null) hashtable.put(numbers[i], i);
                num = hashtable.get(target-numbers[i]);
                if ( num != null && num < i) {
                    indices[0] =num + 1;
                    indices[1] =  i+1;
                    return indices;
                }
            }
            return indices; 
        }

     

     

     

  • 相关阅读:
    解决Maven下载依赖慢
    Spring Boot系列教程六:日志输出配置log4j2
    Spring Boot系列教程三:使用devtools实现热部署
    Spring Boot系列教程五:使用properties配置文件实现多环境配置
    Spring Boot系列教程四:配置文件详解properties
    Spring Boot系列教程二:创建第一个web工程 hello world
    Spring Boot系列教程一:Eclipse安装spring-tool-suite插件
    Spring Boot系列教程十:Spring boot集成MyBatis
    vim入门一 常用指令
    Linux IO多路复用之epoll网络编程(含源码)
  • 原文地址:https://www.cnblogs.com/dongdong230/p/4224657.html
Copyright © 2011-2022 走看看