LeetCode1 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, 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].
思路:

解法1

两重循环进行暴力搜索,当出现符合条件的两个数时返回其坐标,时间代价为O(n^2).

class Solution {
public:
	vector<int> twoSum(vector<int>& nums, int target) {
		vector<int> res;
		for (int i = 0; i < nums.size(); i++) {
			for (int j = 0; j < i; j++) {
				if (nums[i] + nums[j] == target) return { j, i };
			}
		}
		return res;
	}
};

解法2

为了减小时间复杂度,我们使用Hash表来记录nums中元素值和相应位置的映射,使得时间复杂度可以降为O(n).

class Solution {
public:
    vector<int> twoSum(vector<int>& nums, int target) {
		unordered_map<int, int> m;
		for (int i = 0; i < nums.size(); i++) {
			m[nums[i]] = i;
		}
		for (int i = 0; i < nums.size(); i++) {
			int residual = target - nums[i];
			if (m.count(residual) == 1 && i != m[residual]) return{ i, m[residual] };
		}
		return { 0, 0 };
    }
};

解法3

在解法2中,我们便利了两次数组,但实际上我们只需要遍历一次,然后将遇到过的数记录下来就可以了,但是要注意两个数相同时只能记录其中一个的位置。

class Solution {
public:
    vector<int> twoSum(vector<int>& nums, int target) {
		unordered_map<int, int> m;
		for (int i = 0; i < nums.size(); i++) {
			if(m.count(nums[i]) == 0)m[nums[i]] = i;
			int residual = target - nums[i];
			if (m.count(residual) == 1 && m[residual] != i) return { i, m[residual] };
		}
		return { 0, 0 };
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值