leetcode18. 四数之和(java)

news/2025/1/16 5:52:34/

四数之和

  • 题目描述
    • nSum 双指针
    • 代码演示
  • 上期经典

题目描述

难度 - 中等
原题链接 - 四数之和

给你一个由 n 个整数组成的数组 nums ,和一个目标值 target 。请你找出并返回满足下述全部条件且不重复的四元组 [nums[a], nums[b], nums[c], nums[d]] (若两个四元组元素一一对应,则认为两个四元组重复):
0 <= a, b, c, d < n
a、b、c 和 d 互不相同
nums[a] + nums[b] + nums[c] + nums[d] == target
你可以按 任意顺序 返回答案 。

示例 1:
输入:nums = [1,0,-1,0,-2,2], target = 0
输出:[[-2,-1,1,2],[-2,0,0,2],[-1,0,0,1]]

示例 2:
输入:nums = [2,2,2,2,2], target = 8
输出:[[2,2,2,2]]

提示:
1 <= nums.length <= 200
-1e9 <= nums[i] <= 1e9
-1e9 <= target <= 1e9

在这里插入图片描述

nSum 双指针

nSum 问题是一类问题的总称,3个数字之和,4个数字之和,都是一类问题,用双指针解决。
想用双指针,就要保证数据是有序的,因此要先给数组排序。
这类问题的通用解法就是先确定好一个数字(三数之和)或者两个数字(四数之和)。然后用双指针,去找另外两个满足的数字。
排好序的数组,用双指针,就能保证指针不回退的找到答案,
题目里要求不能重复值,因此代码里的要做好去重。

具体实现时,还可以进行一些剪枝操作:

  1. 在确定第一个数之后,如果 nums[i]+nums[i+1]+nums[i+2]+nums[i+3]>target,说明此时剩下的三个数无论取什么值,四数之和一定大于 target,因此退出第一重循环;
  2. 在确定第一个数之后,如果 nums[i]+nums[n−3]+nums[n−2]+nums[n−1]<target,说明此时剩下的三个数无论取什么值,四数之和一定小于 target,因此第一重循环直接进入下一轮,枚举 nums[i+1];
  3. 在确定前两个数之后,如果 nums[i]+nums[j]+nums[j+1]+nums[j+2]>target,说明此时剩下的两个数无论取什么值,四数之和一定大于 target,因此退出第二重循环;
  4. 在确定前两个数之后,如果 nums[i]+nums[j]+nums[n−2]+nums[n−1]<target,说明此时剩下的两个数无论取什么值,四数之和一定小于 target,因此第二重循环直接进入下一轮,枚举 nums[j+1]。

代码演示

  /*** 四数之和* @param nums* @param target* @return*/public List<List<Integer>> fourSum(int[] nums, int target) {List<List<Integer>> ans = new ArrayList<>();if (nums == null || nums.length < 4){return ans;}Arrays.sort(nums);int n = nums.length;for (int i = 0; i < n - 3;i++){//去除重复元素if (i > 0 && nums[i] == nums[i - 1]){continue;}//判断临界值if((long)nums[i] + nums[i + 1] + nums[i + 2] + nums[i + 3] > target){break;}//小于target 结束当前循环,指针向右移动。if ((long)nums[i] + nums[n - 1] + nums[n - 2] + nums[n - 3] < target){continue;}//三个数字选择for (int j = i + 1;j < n - 2;j++){if (j > i + 1 && nums[j] == nums[j - 1]){continue;}if ((long)nums[j] + nums[i] + nums[j + 1] + nums[j + 2] > target){break;}if ((long)nums[j] + nums[i] + nums[n - 1] + nums[n - 2] < target){continue;}//两个数字选择int left = j + 1;int right = n - 1;while (left < right){long sum = (long) nums[i] + nums[j] + nums[left] + nums[right];if (sum == target){ans.add(Arrays.asList(nums[i],nums[j],nums[left],nums[right]));//去除重复数字while (left < right && nums[right] == nums[right - 1]){right--;}right--;while (left < right && nums[left] == nums[left + 1]){left++;}left++;} else if (sum > target) {//去除重复数字while (left < right && nums[right] == nums[right - 1]){right--;}right--;} else if (sum < target) {while (left < right && nums[left] == nums[left + 1]){left++;}left++;}}}}return ans;}

上期经典

leetcode15. 三数之和


http://www.ppmy.cn/news/1077940.html

相关文章

Unity UI与粒子 层级问题Camera depth Sorting Layer Order in Layer RenderQueue

Unity游戏开发中&#xff0c;模型、界面、特效等&#xff0c;需要规划好layer的概念&#xff0c;涉及到摄像机&#xff08;Camera&#xff09;、画布&#xff08;Canvas&#xff09;、Shader等相关内容。 在 Unity 中&#xff0c;渲染顺序是由多个因素共同决定的&#xff0c;大…

go学习part20(2)反射细节

1.反射细节 1) reflect.Value.Kind&#xff0c;获取变量的类别&#xff0c;返回的是一个常量&#xff08;看手册) 2&#xff09;Type是类型,Kind是类别 Type和Kind可能是相同的&#xff0c;也可能是不同的. 比如: var num int 10 num的Type是int , Kind也是int 比如: var…

【力扣】62. 不同路径 <动态规划>

【力扣】62. 不同路径 一个机器人位于一个 m m m x n n n 网格的左上角 &#xff08;起始点在下图中标记为 “Start” &#xff09;。 机器人每次只能向下或者向右移动一步。机器人试图达到网格的右下角&#xff08;在下图中标记为 “Finish” &#xff09;。问总共有多少条…

QWidget的ui界面绘制成图片

文章目录 源文件源码解释效果修复图片清晰度 源文件 #include "widget.h" #include "ui_widget.h"#include <QPixmap> #include <QDir>Widget::Widget(QWidget *parent): QWidget(parent), ui(new Ui::Widget) {ui->setupUi(this);// 构造…

如何修复xinput1_4.dll丢失的问题?教你怎么快速修复xinput1_4.dll文件

在使用计算机的过程中&#xff0c;我们可能会遇到各种各样的错误和问题。其中之一就是xinput1_4.dll丢失的错误。这个错误会导致一些游戏或应用程序无法正常运行&#xff0c;给我们带来不便&#xff0c;但是不要担心&#xff0c;其实很简单&#xff0c;我们只要了解清楚xinput1…

Spring框架知识点汇总

01.Spring框架的基本理解 关键字&#xff1a;核心思想IOC/AOP&#xff0c;作用&#xff08;解耦&#xff0c;简化&#xff09;&#xff0c;简单描述框架组成&#xff1b; Spring框架是一款轻量级的开发框架&#xff0c;核心思想是IOC&#xff08;反转控制&#xff09;和AOP&a…

记录学习--字节码解析try catch

1.示例代码 Testpublic void someTest() {String s "111";try {s "222";int i 1/0;} catch (Exception e){e.printStackTrace();System.out.println(s);}System.out.println(s);}2.示例代码对应的字节码 0 ldc #2 <111>2 astore_13 ldc #3 <22…

Redis 教程 - 持久化

Redis 教程 - 持久化 在 Redis 中&#xff0c;持久化是指将数据从内存保存到磁盘上&#xff0c;以便在重启或服务器故障后仍能恢复数据。Redis 提供了两种持久化方式&#xff1a;RDB&#xff08;Redis Database&#xff09;和 AOF&#xff08;Append-Only File&#xff09;。本…