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

 

 

 

 

转载于:https://www.cnblogs.com/dongdong230/p/4224657.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值