Leetcode: Two Sum

本文介绍了一种高效的解决两数之和问题的方法。通过使用哈希表存储目标值与当前元素之间的差值及其对应的索引,可以在一次循环内找到两个数的索引,大大提升了查找效率。

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

Two Sum

Given an array of integers, find two numbers such that they add up to a specific target number.

The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

You may assume that each input would have exactly one solution.

Input: numbers={2, 7, 11, 15}, target=9
Output: index1=1, index2=2

Idea: One trivial solution is to for each element, loop through all remaining elements and check if their sum is equal to the target. The time complexity is O(n^2), where n is the size of array. To seek the efficiency, we need the extra space for this problem. The idea of this problem is using a hashtable (unordered_map) to store unordered_map<target-numbers[i], i+1>, where the key is the difference of the target and the current element and the corresponding value of hashtable is the index (i+1). Therefore, we will find the two elements in one loop.

class Solution {
public:
    vector<int> twoSum(vector<int> &numbers, int target) {
        // IMPORTANT: Please reset any member data you declared, as
        // the same Solution instance will be reused for each test case.
        std::unordered_map<int, int> hash;
        std::vector<int> sol;
        for (int i=0; i < numbers.size(); ++i)
        {
            auto &found = hash.find(numbers[i]); 
            if(found != hash.end())
            {
                sol.push(found->second);
                sol.push(i+1);
                return sol;
            }
            else
            {
                hash[target - numbers[i]] = i+1;
            }
        }
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值