Leecode热题100---15:三数之和为零

题目:

给你一个整数数组 nums ,判断是否存在三元组 [nums[i], nums[j], nums[k]] 满足 i != j、i != k 且 j != k ,同时还满足 nums[i] + nums[j] + nums[k] == 0 。

请你返回所有和为 0 且不重复的三元组。

注意:答案中不可以包含重复的三元组。

C++:

双指针法:

cpp 复制代码
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

class Solution {
public:
	vector<vector<int>> threeSum(vector<int>& nums) {
		int n = nums.size();
		sort(nums.begin(), nums.end()); // 对数组进行排序,以便后续操作
		vector<vector<int>> answer; // 存储结果的二维向量

		for (int i = 0; i < n; i++) { // 遍历数组,固定第一个元素
			// 避免重复的固定元素
			if (i > 0 && nums[i] == nums[i - 1])
				continue;

			int left = i + 1; // 左指针指向固定元素的下一位
			int right = n - 1; // 右指针指向数组末尾

			while (left < right) {
				int sum = nums[i] + nums[left] + nums[right]; // 计算三个元素的和

				if (sum < 0) { // 如果和小于零,说明需要增大和,左指针右移一位
					left++;
				}
				else if (sum > 0) { // 如果和大于零,说明需要减小和,右指针左移一位
					right--;
				}
				else { // 和等于零,找到满足条件的三元组
					answer.push_back(vector<int>{ nums[i], nums[left], nums[right] }); // 将三元组添加到结果中
					cout << nums[i], nums[left], nums[right];

					// 避免重复的左指针元素
					while (left < right && nums[left] == nums[left + 1])
						left++;
					// 避免重复的右指针元素
					while (left < right && nums[right] == nums[right - 1])
						right--;

					left++; // 左指针右移一位
					right--; // 右指针左移一位
				}
			}
		}
		return answer;
	}
};

int main()
{
	Solution S;
	vector<int> nums = { -1, 0, 1, 2, -1, -4 };
	vector<vector<int>> answers = S.threeSum(nums);
}

python:

思路:先排序,然后两边向中间靠拢。

python 复制代码
class Solution():
    def threeSum(self,nums):
        nums.sort()  # 排序
        res = []
        for i in range(len(nums)):  # 遍历每一个数
            if i==0 or nums[i] > nums[i-1]:  # 确定不重复的数字(开头)
                l = i+1
                r = len(nums)-1
                while l<r:
                    s = nums[i] + nums[l] + nums[r]
                    if s == 0:
                        res.append([nums[i],nums[l],nums[r]])
                        l += 1
                        r -= 1
                        # 左边向右移动到不重复数为止
                        while l<r and nums[l] == nums[l-1] :
                            l += 1
                        # 右边向左边移动不重复数为止
                        while l<r and nums[r] == nums[r+1] :
                            r -= 1
                    elif s >0:
                        r -= 1
                    else:
                        l += 1
        return res
相关推荐
我要昵称干什么5 分钟前
基于S函数的simulink仿真
人工智能·算法
AndrewHZ30 分钟前
【图像处理基石】什么是tone mapping?
图像处理·人工智能·算法·计算机视觉·hdr
念九_ysl30 分钟前
基数排序算法解析与TypeScript实现
前端·算法·typescript·排序算法
守正出琦33 分钟前
日期类的实现
数据结构·c++·算法
ChoSeitaku35 分钟前
NO.63十六届蓝桥杯备战|基础算法-⼆分答案|木材加工|砍树|跳石头(C++)
c++·算法·蓝桥杯
YueiL1 小时前
C++入门练习之 给出年分m和一年中的第n天,算出第n天是几月几号
开发语言·c++·算法
weixin_435208161 小时前
通过 Markdown 改进 RAG 文档处理
人工智能·python·算法·自然语言处理·面试·nlp·aigc
ゞ 正在缓冲99%…1 小时前
leetcode75.颜色分类
java·数据结构·算法·排序
奋进的小暄2 小时前
贪心算法(15)(java)用最小的箭引爆气球
算法·贪心算法
Scc_hy2 小时前
强化学习_Paper_1988_Learning to predict by the methods of temporal differences
人工智能·深度学习·算法