菜鸡的原地踏步史06(◐‿◑)

回溯

全排列

class Solution {/**回溯问题套路模板bactracing(nums, startIndex)*/List<List<Integer>> res = new ArrayList();List<Integer> path = new ArrayList();public List<List<Integer>> permute(int[] nums) {if(nums.length == 0 || nums == null) {return res;}backtracing(nums, 0);return res;}public void backtracing(int[] nums, int startIndex) {if(path.size() == nums.length) {res.add(new ArrayList(path));return;}for(int i = 0; i < nums.length; i++) {if(!path.contains(nums[i])) {path.add(nums[i]);backtracing(nums, i + 1);path.remove(path.size() - 1);}       }}
}

子集

class Solution {/**和上一题的区别就是,少加一步判断for循环从startIndex开始*/List<List<Integer>> res = new ArrayList();List<Integer> path = new ArrayList();public List<List<Integer>> subsets(int[] nums) {if(nums.length == 0 || nums == null) {return res;}Arrays.sort(nums);backtracing(nums, 0);return res;}public void backtracing(int[] nums, int startIndex) {if(!res.contains(path)) {res.add(new ArrayList(path));}for(int i = startIndex; i < nums.length; i++) {if(!path.contains(nums[i])) {path.add(nums[i]);backtracing(nums, i + 1);path.remove(path.size() - 1);}}}
}

电话号码的字母组合

class Solution {/**先创建一个数字和字母对应的hashmap回溯的时候,遍历两个字符串*/List<String> res = new ArrayList();StringBuffer path = new StringBuffer();HashMap<Character, String> map = new HashMap();public List<String> letterCombinations(String digits) {map.put('2', "abc");map.put('3', "def");map.put('4', "ghi");map.put('5', "jkl");map.put('6', "mno");map.put('7', "pqrs");map.put('8', "tuv");map.put('9', "wxyz");if(digits == null ||digits.length() == 0) {return res;}backtracing(digits, 0);return res;}public void backtracing(String digits, int startIndex) {if(path.length() == digits.length()) {res.add(path.toString());return;}char digit = digits.charAt(startIndex);String s = map.get(digit);char[] ch = s.toCharArray();for(char c: ch) {path.append(c);backtracing(digits, startIndex + 1);path.deleteCharAt(path.length() - 1);}}
}

组合总和

class Solution {/**可以被重复选取*/List<List<Integer>> res = new ArrayList();List<Integer> path = new ArrayList();public List<List<Integer>> combinationSum(int[] candidates, int target) {backtracing(candidates, target, 0);return res;}public void backtracing(int[] candidates, int target, int start) {if(sum(path) == target) {res.add(new ArrayList(path));return;}else if(sum(path) > target) {return;}// #############################################// 其他方式?for(int i = start; i < candidates.length; i++) {path.add(candidates[i]);backtracing(candidates, target, i);path.remove(path.size() - 1);}}public int sum(List<Integer> path) {int sum = 0;for(int i = 0; i < path.size(); i++) {sum += path.get(i);}return sum;}
}

括号生成

class Solution {/**left和right分别表示左括号和右括号数量*/List<String> res = new ArrayList();StringBuffer path = new StringBuffer();public List<String> generateParenthesis(int n) {backtracing(n, 0, 0);return res;}public void backtracing(int n, int left, int right) {if(path.length() == n * 2) {res.add(path.toString());return;}if(left < n) {path.append("(");backtracing(n, left + 1, right);path.deleteCharAt(path.length() - 1);}if(right < left) {path.append(")");backtracing(n, left, right + 1);path.deleteCharAt(path.length() - 1);}}
}

单词搜索


分割回文串


贪心算法

买卖股票都最佳时期

class Solution {/**0      1dp[i]表示第i天买入 or 卖出买入 dp[i][0] = dp[i - 1][0], dp[i - 1][1] + prices[i];dp[i][1] = dp[i - 1][1], -prices[i]*/public int maxProfit(int[] prices) {int n = prices.length;int[][] dp = new int[n][2];dp[0][1] = -prices[0];for(int i = 1; i < n; i++) {dp[i][0] = Math.max(dp[i - 1][0], dp[i - 1][1] + prices[i]);dp[i][1] = Math.max(dp[i - 1][1], -prices[i]);}return dp[n - 1][0];}
}

跳跃游戏

class Solution {/**朴实无华的想法不太对boolean dp[i]表示可以第i个位置是可以到达的dp[i] = dp[i - 1] ? dp[i - 1] >= 1,dp[i] = true ?##################################################dp[i]表示第i个位置可以跳跃的最远距离?dp[i] i + nums[i]*/public boolean canJump(int[] nums) {int[] dp = new int[nums.length];if(nums.length == 0 || nums == null) {return false;}dp[0] = nums[0];// 0 1 2 3 4// 2,3,1,1,4// 2,4,4,4,8// 0 1 2// 0 2 2// 0 xfor(int i = 1; i < dp.length; i++) {if(dp[i - 1] < i) {return false;}dp[i] = Math.max(dp[i - 1], i + nums[i]);if(dp[i] >= nums.length - 1) {return true;}}return dp[dp.length - 1] >= nums.length - 1;}
}

跳跃游戏II

class Solution {/**dp[i]表示跳跃到位置i的最小跳跃次数感觉像上一题那样直接求出dp[i]然后看变化了几次?*/public int jump(int[] nums) {int jump = 0;int maxdistance = 0;int index = 0;for(int i = 0; i < nums.length - 1; i++) {maxdistance = Math.max(i + nums[i], maxdistance);if(index == i) {jump++;index = maxdistance;}}return jump;}
}

划分字母区间

class Solution {/**记录s中所有字母出现的最后一个位置用int[26]记录每次遍历更新endend - start + 1*/public List<Integer> partitionLabels(String s) {int[] lastIndex = new int[26];List<Integer> list = new ArrayList();for(int i = 0; i < s.length(); i++) {lastIndex[s.charAt(i) - 'a'] = i;}int start = 0;int end = 0;for(int i = 0; i < s.length(); i++) {end = Math.max(end, lastIndex[s.charAt(i) - 'a']);if(end == i) {list.add(end - start + 1);start = end + 1;}}return list;}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/870104.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

通过图像高频信息保留图像细节,能保留多少细节-Comfyui

&#x1f9e8;前情提要 如果还不了解comfyui中图像高频信息保留细节的内容&#xff0c;可以参考上一篇文章&#xff1a; 图像中高频信息、低频信息与ComfyUI中图像细节保留的简单研究-CSDN博客 这次主要是简单测试下保留图像细节&#xff0c;能保留到什么程度&#xff1b; …

江波龙 128G msata量产

一小主机不断重启&#xff0c;用DG格式化 无法完成&#xff0c;应该是有坏块了 找一个usb转msata转换板 查了一下是2246en aa主控 颗粒应该是三星的 缓存是现代的 找到量产工具sm22XMPToolP0219B 打开量产工具 用镊子先短接一下jp1 插入usb口&#xff0c;再拿走镊子 scan …

每天五分钟计算机视觉:目标检测算法之R-CNN

本文重点 在计算机视觉领域,目标检测一直是一个核心问题,旨在识别图像中的物体并定位其位置。随着深度学习技术的发展,基于卷积神经网络(CNN)的目标检测算法取得了显著的进步。其中,R-CNN(Regions with CNN features)是一种开创性的目标检测框架,为后续的研究提供了重…

微积分-导数6(隐式导数)

隐式导数 前面我们学了如何求这些方程的导数&#xff1a; y x 3 1 or y x sin ⁡ x y \sqrt{x^31} \quad \text{or} \quad y x\sin x yx31 ​oryxsinx 但是如果是下面的方程&#xff0c;又该如何求导呢&#xff1f; x 3 y 3 6 x y x^3 y^3 6xy x3y36xy 这个方程的图…

【Docker 入门】

文章目录 概要 一、安装Docker CE1.1.配置阿里云镜像加速【可选】1.2.重启 二、Docker版本选择三、Docker指令1.Docker命令1.1.run1.2.start/stop/restart1.3.kill1.4.rm1.5.create1.6.ps1.7.exec1.8.top1.9.port 2.Dockerfile命令3.镜像打包3.镜像运行4.镜像导入导出5.镜像查看…

【Linux】进程的基本概念(已经进程地址空间的初步了解)

目录 一.什么是进程 进程和程序的区别 Linux查看进程 进程的信息 fork函数 二.进程状态 操作系统上进程状态的概念 运行 阻塞 挂起 Linux中的进程状态 R状态 S状态和D状态 T状态 t状态 X状态 Z状态 三.进程的优先级 修改进程优先级 四.环境变量 常见的环境变量 PATH HOME PW…

Knife4j的原理及应用详解(六)

本系列文章简介&#xff1a; 在当今快速发展的软件开发领域&#xff0c;API&#xff08;Application Programming Interface&#xff0c;应用程序编程接口&#xff09;作为不同软件应用之间通信的桥梁&#xff0c;其重要性日益凸显。随着微服务架构的兴起&#xff0c;API的数量…

科普文:jvm笔记

一、JVM概述# 1. JVM内部结构# 跨语言的平台&#xff0c;只要遵循编译出来的字节码的规范&#xff0c;都可以由JVM运行 虚拟机 系统虚拟机 VMvare 程序虚拟机 JVM JVM结构 HotSpot虚拟机 详细结构图 前端编译器是编译为字节码文件 执行引擎中的JIT Compiler编译器是把字节…

关于无法定位程序输入点 SetDefaultDllDirectories于动态链接库KERNEL32.dll 上 解决方法

文章目录 1. ERNEL32.dll 下载2. 解决方法 &#x1f44d; 个人网站:【 洛秋小站】 1. ERNEL32.dll 下载 Windows 7 在安装postman时报错缺少动态链接库,提示缺少.NET Framework,这是因为本地缺少相应的dll文件导致的&#xff0c;这时就需要下载ERNEL32.dll文件&#xff0c;在解…

高级java每日一道面试题-2024年7月11日

面试官问: 接口和抽象类有什么区别? 我回答: 在Java中&#xff0c;接口&#xff08;Interface&#xff09;和抽象类&#xff08;Abstract Class&#xff09;都是用于定义一组行为或属性的重要机制&#xff0c;但它们之间存在明显的区别。以下是对它们之间区别的详细解析&…

前端/python脚本/转换-使用天地图下载的geojson(echarts4+如果直接使用会导致坐标和其他信息不全)

解决echarts4如果直接使用天地图下载的geojson会导致坐标和其他信息不全 解决方法是使用python脚本来补全其他信息&#xff1a;center&#xff0c;level&#xff0c;adcode等内容 前提是必须有一个之前使用的json文件&#xff08;需要全一点的数据供echarts使用&#xff09; …

Linux文件编程应用

目录 一、实现cp命令 二、修改程序的配置文件 三、写一个整数/结构体到文件 1.写一个整数到文件 2.写一个结构体到文件 四、写结构体数组到文件 我们学习了文件编程的常用指令以及了解文件编程的基本步骤后&#xff0c;试着来写一些程序实现某些功能。&#xff08;没有学…

记录一次微信小程序申诉定位权限过程

1 小程序接到通知&#xff0c;检测到违规&#xff0c;需要及时处理&#xff0c;给一周的缓冲时间&#xff0c;如果到期未处理&#xff0c;会封禁能力&#xff08;2023-11-17&#xff09; 2 到期后&#xff0c;仍未处理&#xff0c;封禁能力&#xff08;2023-11-24&#xff09; …

刷题——包含min的队列

包含min函数的栈_牛客题霸_牛客网 使用了两个队列&#xff0c;其中s2里放最小元素&#xff0c;而且多少与s1对齐&#xff0c;如果发现s1的顶小于当前s2的顶&#xff0c;就加入s2中&#xff0c;如果不小于也将s2的顶再放一次&#xff0c;最顶上的元素&#xff0c;绝对是最小的元…

【04】微服务通信组件Feign

1、项目中接口的调用方式 1.1 HttpClient HttpClient 是 Apache Jakarta Common 下的子项目&#xff0c;用来提供高效的、最新的、功能丰富的支持 Http 协议的客户端编程工具包&#xff0c;并且它支持 HTTP 协议最新版本和建议。HttpClient 相比传统 JDK 自带的 URLConnectio…

标签页(Tabs)

标签页(Tabs) 标签页(Tabs)是一种常见的用户界面元素,广泛应用于网页设计、移动应用和桌面软件中。它们提供了一种简洁有效的方式来组织内容,允许用户在不同的视图或数据集之间轻松切换。本文将探讨标签页的设计原理、使用场景、最佳实践以及如何在现代网页和应用程序中…

打印任务无法删除怎么办?

在删除打印任务的时候&#xff0c;你可能会遇到这样的情况&#xff0c;当我们想把打印任务取消的时候&#xff0c;却一直显示正在删除&#xff0c;而过了很久还没有取消掉&#xff0c;下面就分享一下处理这个问题的方法。 1、停止打印服务&#xff0c;按WinR键打开运行对话框&a…

Unity WebGL 嵌入前端网页并通信

1. 前言 最近在做项目时遇到需要将 UnityWebGL 嵌入到网页中去&#xff0c;且需要点击网页中的按钮 UnityWebGL 可以做出响应。新建项目部分直接略过 2. 最终效果 3. 基础设置 设置导出平台为WebGL 在Player Settings -> Publishing Settings 中勾选 Data Caching 和Deco…

《Windows API每日一练》9.1.5 自定义资源

自定义资源&#xff08;Custom Resources&#xff09;是在 Windows 程序中使用的一种资源类型&#xff0c;用于存储应用程序特定的数据、图像、音频、二进制文件等。通过自定义资源&#xff0c;开发者可以将应用程序所需的各种资源文件集中管理和存储&#xff0c;便于在程序中访…

SpringBoot3+Redis实现分布式锁

SpringBoot3RedisLua脚本实现分布式锁 相关依赖包 <spring-boot.version>3.0.2</spring-boot.version> <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId> </depende…