Leetcode--Two Sum

本文介绍了一种解决两数之和问题的有效算法。该算法利用unordered_map存储数组中的元素及其索引,通过查找目标值减去当前元素值的方式快速找到匹配项。这种方法时间复杂度为O(n),避免了传统双重循环的低效性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Description

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.

Example:

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

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

Solution

class Solution {
public:
    vector<int> twoSum(vector<int>& nums, int target) {
        unordered_map<int, int> map;
        vector<int> res;
        for(int i = 0; i < nums.size(); i++)
        {
            int other = target - nums[i];
            if(map.find(other)!=map.end())
            {
                res.push_back(map[other]);
                res.push_back(i);
                return res;
            }
            map[nums[i]] = i;
        }
        return res;
    }
};

Review

sum = a + b
解法用到了vector<int>,实际就是int类型;
对于unordered_map<int, int> map
如果需要内部元素自动排序,使用map,不需要排序使用unordered_map,因为我们这里只需要寻找b = (sum - a)是否在数组里,所以不必排序,使用unordered_map,函数find()用于返回元素在数组中的位置,若map.find(b) != map.end(),说明b存在。


Leetcode–Two Sum


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值