美文网首页
第一题——Two Sum

第一题——Two Sum

作者: M1chaelY0ung | 来源:发表于2016-09-27 23:27 被阅读0次

    Given an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution.

    Example:

    Given nums = [2, 7, 11, 15],
    target = 9,Because nums[0] + nums[1] = 2 + 7 = 9,
    return [0, 1].

    这道题要求返回两个数值i和j,使num[i]+num[j]=target;

    这道题一开始的想法就是两个for循环,即
    public class Solution{
        public int[] twoSum(int[] nums,int target){
            int[] back = new int[2];
            for(int i =0;i<nums.length-1;i++){
                for(int j=i+1;j<nums.length;j++){
                    if(nums[i]+nums[j]==target){
                        back[0]=i;
                        back[1]=j;
                        return back;
                    }
                }
            }
            return null;
        }
    }
    
    然后在网上看到了另一种时间复杂度更低的算法,贴上来也看一下:
    public class Solution {
        public int[] twoSum(int[] nums, int target) {
            int[] back = new int[2];
            Map map = new HashMap<>();
            for(int i=0;i<nums.length;i++){
                map.put(nums[i], i);
            }
            for(int i=0;i<nums.length;i++){
                int delNum = target-nums[i];
                if(map.get(delNum)!=null&&(int)map.get(delNum)>i){
                    back[0]=i;
                    back[1]=(int)map.get(delNum);
                }
            }
            return back;
        }
    }
    

    相关文章

      网友评论

          本文标题:第一题——Two Sum

          本文链接:https://www.haomeiwen.com/subject/hwlhyttx.html