Two Sum

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Two Sum相关的知识,希望对你有一定的参考价值。

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, and you may not use the same element twice.

给定一个整数数组,返回两个数字的索引,使它们相加到一个特定的目标。

您可以假设每个输入都只有一个解决方案,而您可能不会使用相同的元素两次。

Given nums = [2, 11, 7, 15], target = 9,

Because nums[0] + nums[2] = 2 + 7 = 9,
return [0, 2].

思考:

1 可以先排序然后使用两个指针向中间遍历  时间复杂度O(nlongn)+O(n) 

while(left < right){
  int temp = nums[left] + nums[right];
  if(temp == target){
    break;
  }else if(temp < target){
   left++;
  }else{
   right--;
  }
}

2 申请一个hashMap key记录数组元素 value数组元素下表 时间复杂度O(n)

for (int i = 0; i < numbers.length; i++) {
        if (map.containsKey(target - numbers[i])) {
            result[1] = i + 1;
            result[0] = map.get(target - numbers[i]);
            return result;
        }
        map.put(numbers[i], i + 1);
    }

 

以上是关于Two Sum的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode #001# Two Sum详解(js描述)

Leetcode - 371. Sum of Two Integers

1 代码片段1

每日一算法之two sum

LeetCode(371) Sum of Two Integers

1_Two Sum --LeetCode