LeetCode-01 两数之和(Two Sum)

题目描述
给定一个整数数组和一个目标值,找出数组中和为目标值的两个数,
你可以假设每个输入只对应一个答案,且同样的元素不能被重复利用。
示例
给定数组 nums = [2, 7, 11, 15], target = 9,
因为 nums[0] + nums[1] = 2 + 7 =9,
所以返回结果 [0, 1]。
分析过程:
初看题目,首先想到两次循环暴力匹配。遍历数组 nums 查找是否有满足 target-nums[i]的元素。显然时间复杂度为 O(n^2),空间复杂度为 O(1)。
实现
C#
public class Solution {
public static int[] TwoSum(int[] nums, int target)
{
int[] res = new int[2];
int len = nums.Length;
for (int i = 0; i < len; i++)
{
int numberToFind = target - nums[i];
for (int j = i + 1; j < len; j++)
{
if(nums[j] == numberToFind)
{
res[0] = i;
res[1] = j;
return res;
}
}
}
return res;
}
}
其实细想,我们只需要遍历一次数组,将然后根据 target-nums[i]为 key 在 HashTable 中查找是否有与之匹配的 value,如果有则说明找到了目标,并将当前索引和 hashtable 中的 value 返回;没有则将当前值作为 key,当前索引作为 value 存入 hashtable 中。
因为 hashtable 的查询平均时间复杂度为 O(1),所以我们的算法时间复杂度从 O(n^2)降到 O(n),因为引入了一个额外的 hashtable 存储,并且最坏情况需要将整个数组的数据放入,所以空间复杂度为 O(n)。
C#
public class Solution {
public int[] TwoSum(int[] nums, int target)
{
int[] res = new int[2];
Dictionary<int,int> dict = new Dictionary<int, int>();
for (int i = 0; i < nums.Length; i++)
{
if(dic.TryGetValue(target - nums[i], out int value)) // O(1)
{
res[1] = i;
res[0] = value;
break;
}
if (!dic.ContainsKey(nums[i])) // O(1)
{
dic.Add(nums[i], i);
}
}
return res;
}
}
C++
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
int size = nums.size();
unordered_map<int, int> hash;
vector<int> result;
for (int i = 0; i < size; i++) {
int numberToFind = target - nums[i];
if (hash.contains(numberToFind)) {
result.push_back(hash[numberToFind]);
result.push_back(i);
return result;
}
hash[nums[i]] = i;
}
return result;
}
};
Python
class Solution:
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
if len(nums) <= 1:
return False
buff_dict = {}
for i in range(len(nums)):
if nums[i] in buff_dict:
return [buff_dict[nums[i]], i]
else:
buff_dict[target - nums[i]] = i
Rust
use std::collections::HashMap;
impl Solution {
pub fn two_sum(nums: Vec<i32>, target: i32) -> Vec<i32> {
let mut hash = HashMap::new();
for (index, value) in nums.iter().enumerate() {
let number_to_find = target - *value;
if hash.contains_key(&number_to_find) {
return vec![hash[&number_to_find], index as i32];
}
hash.insert(value, index as i32);
}
return vec![];
}
}
Javascript
var twoSum = function (nums, target) {
var hash = {};
for (let i = 0; i < nums.length; i++) {
let index = hash[target - nums[i]];
if (typeof index !== "undefined") {
return [index, i];
}
hash[nums[i]] = i;
}
return null;
};
Typescript
function twoSum(nums: number[], target: number): number[] {
let res: number[] = [0, 0];
let dic: Map<number, number> = new Map<number, number>();
for (let i = 0; i < nums.length; i++) {
if (dic.has(target - nums[i])) {
res[0] = dic.get(target - nums[i]) as number;
res[1] = i;
return res;
} else {
dic.set(nums[i], i);
}
}
return [];
}
Go
// 1.Two Sum
func twoSum(nums []int, target int) []int {
hashTable := map[int]int{}
for i, x := range nums {
if p, ok := hashTable[target-x]; ok {
return []int{p, i}
}
hashTable[x] = i
}
return nil
}
Java
public class Solution {
/**
* 1. Two Sum
*
* @param nums
* @param target
* @return
*/
public int[] twoSum(int[] nums, int target) {
int[] res = new int[2];
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; ++i) {
if (map.containsKey(target - nums[i])) {
res[1] = i;
res[0] = map.get(target - nums[i]);
break;
}
if (!map.containsKey(nums[i])) {
map.put(nums[i], i);
}
}
return res;
}
}
引用
习题来自LeetCode中国
所有代码均可以在Github获取
LeetCode-01 两数之和(Two Sum)的更多相关文章
- 每天一道面试题LeetCode 01 -- 两数之和
Two Sum 两数之和 Given an array of integers, find two numbers such that they add up to a specific target ...
- LeetCode 01 两数之和
链接:https://leetcode-cn.com/problems/two-sum 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们 ...
- LeetCode 653. 两数之和 IV - 输入 BST(Two Sum IV - Input is a BST)
653. 两数之和 IV - 输入 BST 653. Two Sum IV - Input is a BST 题目描述 给定一个二叉搜索树和一个目标结果,如果 BST 中存在两个元素且它们的和等于给定 ...
- LeetCode:两数之和、三数之和、四数之和
LeetCode:两数之和.三数之和.四数之和 多数之和问题,利用哈希集合减少时间复杂度以及多指针收缩窗口的巧妙解法 No.1 两数之和 给定一个整数数组 nums 和一个目标值 target,请你在 ...
- 领扣-1/167 两数之和 Two Sum MD
Markdown版本笔记 我的GitHub首页 我的博客 我的微信 我的邮箱 MyAndroidBlogs baiqiantao baiqiantao bqt20094 baiqiantao@sina ...
- 前端与算法 leetcode 1. 两数之和
目录 # 前端与算法 leetcode 1. 两数之和 题目描述 概要 提示 解析 解法一:暴力法 解法二:HashMap法 算法 传入[1, 2], [11, 1, 2, 3, 2]的运行结果 执行 ...
- LeetCode刷题 - (01)两数之和
题目描述 给定一个整数数组nums和一个目标值target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标. 你可以假设每种输入只会对应一个答案.但是,你不能重复利用这个数组中同样的元 ...
- Leetcode 001. 两数之和(扩展)
1.题目要求 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数. 你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用. 示例: 2.解法一:暴力法(for*for,O(n*n)) ...
- leetCode:twoSum 两数之和 【JAVA实现】
LeetCode 两数之和 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标. 您可以假设每个输入只有一个解决方案,并且您可能不会两次使用相同的元素. 更多文章查看个人博客 个人博客地址:t ...
- 【Leetcode】两数之和,三数之和,四数之和
两数之和 题目 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标. 你可以假设每种输入只会对应一个答案.但是,你不能重复利用这 ...
随机推荐
- 一键生成通用高亮代码块到剪贴板,快捷粘贴兼容 TT/WX/BJ 编辑器
有些在线图文编辑器不支持直接插入代码块,但可以直接粘贴 HTML 格式的高亮代码块. 花了一点时间研究了一下各家的编辑器,规则却各不相同.有的要求代码块被包含于 <code> ... &l ...
- CentOS 7.9 安装 kafka_2.13
一.CentOS 7.9 安装 kafka_2.13 地址 https://kafka.apache.org/downloads.html 二.安装准备 1 安装JDK 在安装kafka之前必须先安装 ...
- 利用FastReport传递图片参数,在报表上展示签名信息
在一个项目中,客户要求对报表中的签名进行仿手写的签名处理,因此我们原先只是显示相关人员的姓名的地方,需要采用手写方式签名,我们的报表是利用FastReport处理的,在利用楷体处理的时候,开发展示倒是 ...
- Linux实战笔记_CentOS7_格式化磁盘
fdisk -l #检查是否添加成功(添加一块磁盘并重启计算机后) fdisk /dev/sdb #格式化磁盘 mount /dev/sdb1 /opt #挂载到/opt目录 df -h #查看是否挂 ...
- 齐博X1模板页面之间的继承关系
本节说明下模板页面间的继承 我们在前面建立了一个公共布局模板,并且利用{block name=xxx}...{/block}分割了三个部分区块 本节我们来看下模板之前的继承如何实现,首先我们建立一个i ...
- go-zero docker-compose 搭建课件服务(三):编写courseware api服务
0.转载 go-zero docker-compose 搭建课件服务(三):编写courseware api服务 0.1源码地址 https://github.com/liuyuede123/go-z ...
- 使用LEFT JOIN 统计左右存在的数据
最近做了一个数据模块的统计,统计企业收款.发票相关的数据,开始统计是比较简单,后面再拆分账套统计就有点小复杂,本文做一个简单的记录. 需求 企业表 企业表t_company有如下字段:标识id.企业名 ...
- 1.WEB应用模式
1. Web应用模式 在开发Web应用中,有两种应用模式: 前后端不分离[客户端看到的内容和所有界面效果都是由服务端提供出来的.] 前后端分离[把前端的界面效果(html,css,js分离到另一个服务 ...
- Element Ui 安装以及配置
npm 安装 推荐使用 npm 的方式安装,它能更好地和 webpack 打包工具配合使用. npm i element-ui -S 引入 Element 你可以引入整个 Element,或是根据需要 ...
- 【笔记】CF1714F Build a Tree and That Is It 及相关
题目传送门 细节较多的构造题. 解决思路 题目中虽然说是无根树,但我们可以钦定这棵树的根为 1,方便构造,这是不影响结果的. 以下记给定的三段长度为 \(a,b,c\) . 先考虑无解的情况. 首先, ...