代码随想录二刷day07

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 前言
  • [一、力扣454. 四数相加 II](#一、力扣454. 四数相加 II)
  • [二、力扣383. 赎金信](#二、力扣383. 赎金信)
  • [三、力扣15. 三数之和](#三、力扣15. 三数之和)
  • [四、力扣18. 四数之和](#四、力扣18. 四数之和)

前言

提示:这里可以添加本文要记录的大概内容:


提示:以下是本篇文章正文内容,下面案例可供参考

一、力扣454. 四数相加 II

java 复制代码
class Solution {
    public int fourSumCount(int[] nums1, int[] nums2, int[] nums3, int[] nums4) {
        Map<Integer, Integer> map = new HashMap<>();
        int res = 0;
        for(int i: nums1){
            for(int j : nums2){
                int sum = i + j;
                map.put(sum, map.getOrDefault(sum, 0) + 1);
            }
        }
        for(int i : nums3){
            for(int j : nums4){
                res += map.getOrDefault(0-i - j, 0);
            }
        }
        return res;
    }
}

二、力扣383. 赎金信

java 复制代码
class Solution {
    public boolean canConstruct(String ransomNote, String magazine) {
        int[] arr = new int[27];
        for(int i = 0; i < ransomNote.length(); i ++){
            arr[ransomNote.charAt(i) - 'a'] ++;
        }
        for(int i = 0; i < magazine.length(); i ++){
            arr[magazine.charAt(i) - 'a'] --;
        }
        for(int i : arr){
            if(i > 0){
                return false;
            }
        }
        return true;
    }
}

三、力扣15. 三数之和

java 复制代码
class Solution {
    public List<List<Integer>> threeSum(int[] nums) {
        List<List<Integer>> res = new ArrayList<>();
        Arrays.sort(nums);
        for(int i = 0; i < nums.length-2;){
            if(nums[i] > 0){
                return res;
            }
            int left = i+1, right = nums.length -1;
            while(left < right){
                int sum = nums[i] + nums[left] + nums[right];
                if(sum > 0){
                    right --;
                }else if(sum < 0){
                    left ++;
                }else{
                    res.add(Arrays.asList(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 --;
                }
            }
            while(nums[i] == nums[i+1] && i < nums.length-2)i ++;i ++;
        }
        return res;
    }
}

四、力扣18. 四数之和

java 复制代码
class Solution {
    public List<List<Integer>> fourSum(int[] nums, int target) {
        List<List<Integer>> res = new ArrayList<>();
        if(nums.length <= 3){
            return res;
        }
        Arrays.sort(nums);
        for(int i = 0; i < nums.length -3;){
            if(target < 0 && nums[i]>0){
                return res;
            }
            for(int j = i + 1; j < nums.length - 2; ){
                int left = j + 1, right = nums.length - 1;
                while(left < right){
                    int sum = nums[i] + nums[j] + nums[left] + nums[right];
                    if(sum > target){
                        right --;
                    }else if(sum < target){
                        left ++;
                    }else{
                        res.add(Arrays.asList(nums[i], nums[j], nums[left], nums[right]));
                        while(left < right && nums[left] == nums[left+1])left++;
                        while(left < right && nums[right] == nums[right-1])right--;
                        left ++;
                        right --;
                    }
                }
                while(j < nums.length-2 && nums[j] == nums[j + 1])j ++; j ++;
            }
            while(i < nums.length-3 && nums[i] == nums[i+1])i ++; i ++;
        }
        return res;
    }
}
相关推荐
孙尚香蕉10 分钟前
深入探索哈夫曼编码与二叉树的遍历
数据结构·算法
JasonYin~10 分钟前
HarmonyOS NEXT 实战之元服务:静态案例效果---音乐排行榜
java·华为·harmonyos
Helene190010 分钟前
Leetcode 283-移动零
算法·leetcode·职场和发展
济宁雪人11 分钟前
数据结构之栈和队列
数据结构
andyweike13 分钟前
数据结构-排序思想
数据结构·算法·排序算法
一只码代码的章鱼23 分钟前
高精度算法:加减乘除 (学习笔记)
算法
m0_7482517227 分钟前
Spring Boot——统一功能处理
java·spring boot·后端
love静思冥想27 分钟前
Apache Commons Pool :介绍与使用
java·apache·线程池优化
go546315846530 分钟前
磁盘调度算法
服务器·数据库·算法
monkiro41 分钟前
机器学习算法基础知识1:决策树
算法·决策树·机器学习