Two Sum

Given an array of integers, return indices of the two numbers such that they add up to a specific target. 对于这道题目能够很快的想到用穷举法,

从头开始遍历,对于每个元素,再往后遍历,这样的时间复杂度比较高是O(n)。对于查找具体数值用哈希的方法是很方便的。从头遍历,对于得到的每个

array[i],用target-array[i],看hashmap中是否存在这个key,如果不存在就把(array[i],i)put到hashmap中(边遍历边创建hashmap),如果存在就取出value。

public class Solution {
    public int[] twoSum(int[] nums, int target) {
        HashMap<Integer,Integer> numPos = new HashMap<Integer, Integer>();
        for(int i = 0; i < nums.length ; i++) {
            Integer position = numPos.get(target-nums[i]);
            if(position == null) {
                numPos.put(nums[i],i);
            } else {
                return new int[]{ i, position };
            }
        }
        return null;
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值