leetcode18-4Sum

2024-05-01 08:20
文章标签 leetcode18 4sum

本文主要是介绍leetcode18-4Sum,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目

给你一个由 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个复合要求的数字,注意第一个for的剪枝

import java.util.List;
import java.util.ArrayList;
import java.util.Set;
import java.util.HashSet;
import java.util.Arrays;public class fourSum {public static void main(String[] args) {int[] arr = {1,0,-1,0,-2,2};List<List<Integer>> res = getFour(arr,0);for(List<Integer> lis : res) {for(Integer data : lis) {System.out.print(data + " ");}System.out.println();}}public static List<List<Integer>> getFour(int[] arr,int target) {int len = arr.length;Arrays.sort(arr);Set<List<Integer>> set = new HashSet();for(int i = 0;i<len-3;i++) {if(i > 0 && arr[i] == arr[i-1]) {continue;}for(int j = i+1;j<len-2;j++) {int m = j+1;int n = len - 1;while(m<n) {int data = arr[i]+arr[j]+arr[m]+arr[n];if(data == target) {List<Integer> lis = new ArrayList();lis.add(arr[i]);lis.add(arr[j]);lis.add(arr[m]);lis.add(arr[n]);set.add(lis);m++;n--;} else if(data < target) {m++;} else {n--;}}}}List<List<Integer>> res = new ArrayList();res.addAll(set);return res;}
}

这篇关于leetcode18-4Sum的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/951182

相关文章

LeetCode 18 4Sum

题意: 给出数组s和目标target,输出s中4个元素相加和为target的所有不同方案。 思路: 又是x sum问题,详见我的题解:http://blog.csdn.net/houserabbit/article/details/54707475 这题要注意的是去掉重复的方案,而且本题时间卡常数,代码要写的快一点。 代码: class Solution {publi

Leetcode18: Majority Element

Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times. You may assume that the array is non-empty and the majority element al

Leet Code Medium 18 4Sum

http://tech-wonderland.net/blog/summary-of-ksum-problems.html

LeetCode 题解(17): 4Sum

题目: Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target. Note: Element

LeetCode·18. 4Sum

题目: Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum o

LeetCode18: 四数之和

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

Leetcode18 四数之和

给定一个包含 n 个整数的数组 nums 和一个目标值 target,判断 nums 中是否存在四个元素 a,b,c 和 d ,使得 a + b + c + d 的值与 target 相等?找出所有满足条件且不重复的四元组。注意:答案中不可以包含重复的四元组。 示例 1:(来源力扣) 输入:nums = [1,0,-1,0,-2,2], target = 0 输出:[[-2,-1,1,2],[-2

leetcode18--四数之和

1. 题意 求所有数组中四个数之和为指定值的所有组合 四数之和 2. 题解 暴力没想到也能过 class Solution {public:vector<vector<int>> fourSum(vector<int>& nums, int target) {std::sort(nums.begin(), nums.end());vector<vector<int>> ans;int

java数据结构与算法刷题-----LeetCode18. 四数之和

java数据结构与算法刷题目录(剑指Offer、LeetCode、ACM)-----主目录-----持续更新(进不去说明我没写完):https://blog.csdn.net/grd_java/article/details/123063846 解题思路 此题为三数之和的衍生题,代码完全一样,只不过多了一层for循环,而多的这一层for循环,也只不过是再复制一份三数之和的for循环

【LeetCode算法练习(C++)】4Sum

题目: Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target. Note: The solutio