LeetCode OJ ----Two Sum

本文针对LeetCode上的经典题目“两数之和”提供了两种C++实现方案。第一种采用双重循环遍历的方法查找配对元素,第二种利用哈希表优化查找过程,提高效率。文章还介绍了C++中vector的定义方式及注意事项。

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

LeetCode OJ(1) —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

code(c++)

法一:

vector<int> twoSum(vector<int>& nums, int target) {
        int smallIndex;
        int residual;
        vector<int> ans;
        for(int i = 0; i < nums.size(); ++i){
            smallIndex = i;
            residual = target - nums[i];
            for(int j = i+1; j < nums.size(); ++j){
                if(nums[j] == residual){
                    ans.push_back(smallIndex+1);
                    ans.push_back(j+1);
                    return ans;
                }
            }
        }
    }

法二:

vector<int> twoSum(vector<int>& nums, int target) {
        unordered_map<int, int> indMapVal;
        vector<int> indices;
        for(int i = 0; i < nums.size(); ++i)
            indMapVal[nums[i]] = i;
        for(int i = 0; i < nums.size(); ++i){
            if(indMapVal.find(target - nums[i]) != 
            indMapVal.end() && 
            indMapVal.find(target - nums[i])->second != i){
                indices.push_back(i);
                indices.push_back(
                indMapVal.find(target - nums[i])->second);
                break;
            }
        }
        return indices;
    }

注意点

  1. 这里并没有说容器中每个数都为正数

语法

  1. 在c++中,定义vector的方式有如下几种:
    这里写图片描述
    如果要定义指针类型,则需要new一下,如下所示:
    vector *a = new vector();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值