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

Two Sum

时间:2014-12-11 01:29:38      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   os   使用   sp   for   java   on   

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

 

最先我使用的方法是两个for循环的方法,时间复杂度为O(n2)。但是,在线测试提示时间超时,因此必须考虑更加简单的方法,

public class Solution {
    public int[] twoSum(int[] numbers, int target) {
        int[]temp = new int[2];
        Map<Integer,Integer>map = new HashMap<Integer,Integer>();
        for(int i = 0;i<numbers.length;i++){
            if(map.get(numbers[i])==null){
                map.put(numbers[i],i);
            }
            if(map.containsKey(target-numbers[i])&& i !=map.get(target-numbers[i])){
                temp[1] = i+1;
                temp[0] = map.get(target-numbers[i])+1;
                return temp;
            }
        }
        return temp;
    }
}

  

Two Sum

标签:blog   io   ar   os   使用   sp   for   java   on   

原文地址:http://www.cnblogs.com/CBDoctor/p/4156688.html

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