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; 
        }

     

     

     

  • 相关阅读:
    php(ThinkPHP)实现微信小程序的登录过程
    路由器OpenWrt如何脱机(离线)下载BT文件
    OPENWRT X86 安装使用教程 (未完成)
    openwrt l7过滤qos配置
    Ushare应用
    脱机BT transmission
    js实现编码,解码
    波尔远程控制软件与网络人远程控制软件大比拼
    baike并行计算概念
    开机启动tomcat
  • 原文地址:https://www.cnblogs.com/dongdong230/p/4224657.html
Copyright © 2011-2022 走看看