码迷,mamicode.com
首页 > 其他好文 > 详细

Two Sum

时间:2015-08-08 14:51:39      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享

 

思路:只需遍历一次数组,利用HashMap保存数组元素和下标,如果target-数组元素存在HashMap的key中,则返回结果,如果不存在,则put到HashMap中,注意,这种遍历保证了数组的下标肯定不小于HashMap中的下标。

 

Java代码:

    public int[] twoSum(int[] nums, int target) {
        Map<Integer, Integer> num_index = new HashMap<Integer, Integer>();
        for (int i = 0; i < nums.length; i++) {
            if (num_index.containsKey(target - nums[i])) {
                return new int[] {num_index.get(target - nums[i]) + 1, i + 1};
            }
            num_index.put(nums[i], i);
        }
        throw new IllegalArgumentException("No solution.");
    }

 

Two Sum

标签:

原文地址:http://www.cnblogs.com/lasclocker/p/4713120.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!