leetCode 1. Two Sum 数组

简介:

1. 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.

Example:

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

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

题目大意:

在一个数组中找出2个元素的和等于目标数,输出这两个元素的下标。

思路:

最笨的办法喽,双循环来处理。时间复杂度O(n*n)。

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class  Solution {
public :
     vector< int > twoSum(vector< int >& nums,  int  target) {
         vector< int > result;
         int  i,j;
         for (i = 0; i < nums.size();i++)
         {
             for (j = i+1; j < nums.size();j++)
             {
                 if (nums[i] + nums[j] == target)
                 {
                     result.push_back(i);
                     result.push_back(j);
                     break ;
                 }
             }
         }
         return  result;
     }
};

参考他人的做法:https://discuss.leetcode.com/topic/3294/accepted-c-o-n-solution

采用map的键值,把元素做键,把元素的下标做值。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
vector< int > twoSum(vector< int > &numbers,  int  target)
{
     //Key is the number and value is its index in the vector.
     unordered_map< int int > hash;
     vector< int > result;
     for  ( int  i = 0; i < numbers.size(); i++) {
         int  numberToFind = target - numbers[i];
 
             //if numberToFind is found in map, return them
         if  (hash.find(numberToFind) != hash.end()) {
             
             result.push_back(hash[numberToFind]);
             result.push_back(i);            
             return  result;
         }
 
             //number was not found. Put it in the map.
         hash[numbers[i]] = i;
     }
     return  result;
}



本文转自313119992 51CTO博客,原文链接:http://blog.51cto.com/qiaopeng688/1836898
相关文章
|
1月前
【Leetcode】两数之和,给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
【Leetcode】两数之和,给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
|
2天前
|
算法
leetcode代码记录(寻找两个正序数组的中位数
leetcode代码记录(寻找两个正序数组的中位数
9 2
|
2天前
|
索引
leetcode代码记录(最长重复子数组
leetcode代码记录(最长重复子数组
8 0
|
2天前
leetcode代码记录(两个数组的交集
leetcode代码记录(两个数组的交集
8 1
|
2天前
leetcode代码记录(最大子数组和
leetcode代码记录(最大子数组和
9 2
|
5天前
|
存储 算法
Leetcode 30天高效刷数据结构和算法 Day1 两数之和 —— 无序数组
给定一个无序整数数组和目标值,找出数组中和为目标值的两个数的下标。要求不重复且可按任意顺序返回。示例:输入nums = [2,7,11,15], target = 9,输出[0,1]。暴力解法时间复杂度O(n²),优化解法利用哈希表实现,时间复杂度O(n)。
16 0
|
11天前
|
索引
Leetcode 给定一个数组,给定一个数字。返回数组中可以相加得到指定数字的两个索引
Leetcode 给定一个数组,给定一个数字。返回数组中可以相加得到指定数字的两个索引
|
26天前
【力扣】238. 除自身以外数组的乘积
【力扣】238. 除自身以外数组的乘积
|
26天前
|
C++
【力扣】2562. 找出数组的串联值
【力扣】2562. 找出数组的串联值
|
1月前
|
算法 C++ 索引
【力扣经典面试题】238. 除自身以外数组的乘积
【力扣经典面试题】238. 除自身以外数组的乘积

热门文章

最新文章