代码随想录算法训练营第二十七天(二十六填休息) | 39. 组合总和、40、组合总和 II、131. 分割回文串

代码随想录算法训练营第二十七天(二十六填休息) | 39. 组合总和、40、组合总和 II、131. 分割回文串

  • 39. 组合总和
    • 题目
    • 解法
  • 40、组合总和 II
    • 题目
    • 解法
  • 131. 分割回文串
    • 题目
    • 解法
    • substr()用法
  • 感悟

39. 组合总和

题目

在这里插入图片描述

解法

  1. 初始解法:出现重复组合,每一次递归从头开始了
class Solution {
public:vector<vector<int>> result;vector<int> path;void backtracking(vector<int>& candidates, int target, int sum) {if(sum == target) {result.push_back(path);return ;}if (sum > target) return;for (int i = 0; i < candidates.size(); i++) {sum += candidates[i];path.push_back(candidates[i]);backtracking(candidates, target, sum);path.pop_back();sum -= candidates[i];}return ;}vector<vector<int>> combinationSum(vector<int>& candidates, int target) {result.clear();path.clear();int sum = 0;backtracking(candidates, target, sum);return result;}
};

2.看完题解之后:加上startIdx之后,使用重复元素只使用一次;

class Solution {
public:vector<vector<int>> result;vector<int> path;void backtracking(vector<int>& candidates, int target, int sum, int startIdx) {if(sum == target) {result.push_back(path);return ;}if (sum > target) return;// sum + candidates[i] > target 会终止遍历 所以candidates 需要排序 for (int i = startIdx; i < candidates.size() && sum + candidates[i] <= target; i++) { // 剪枝优化sum += candidates[i];path.push_back(candidates[i]);backtracking(candidates, target, sum, i);path.pop_back();sum -= candidates[i];}return ;}vector<vector<int>> combinationSum(vector<int>& candidates, int target) {result.clear();path.clear();sort(candidates.begin(), candidates.end());backtracking(candidates, target, 0, 0);return result;}
};

40、组合总和 II

题目

在这里插入图片描述

解法

  1. 初始想法+题解: 对于重复元素自取一次的逻辑(只取同一树枝上的)
class Solution {
public:vector<vector<int>> result;vector<int> path;void backtracking(vector<int>& candidates, int target, int sum, int startIdx) {if(sum == target) {result.push_back(path);return ;}if (sum > target) return;// sum + candidates[i] > target 会终止遍历 所以candidates 需要排序 for (int i = startIdx; i < candidates.size() && sum + candidates[i] <= target; i++) { // 剪枝优化if(i > startIdx && candidates[i] == candidates[i-1]) continue ; // 去重 同一树层去重sum += candidates[i];path.push_back(candidates[i]);backtracking(candidates, target, sum, i + 1);path.pop_back();sum -= candidates[i];}return ;}vector<vector<int>> combinationSum2(vector<int>& candidates, int target) {result.clear();path.clear();sort(candidates.begin(), candidates.end());backtracking(candidates, target, 0, 0);return result;}
};

2.使用数组储存是否已经使用过同一树层的元素

class Solution {
public:vector<vector<int>> result;vector<int> path;void backtracking(vector<int>& candidates, int target, int sum, int startIdx, vector<bool> used) {if(sum == target) {result.push_back(path);return ;}if (sum > target) return;// sum + candidates[i] > target 会终止遍历 所以candidates 需要排序 for (int i = startIdx; i < candidates.size() && sum + candidates[i] <= target; i++) { // 剪枝优化// used[i - 1] == true,说明同一树枝candidates[i - 1]使用过// used[i - 1] == false,说明同一树层candidates[i - 1]使用过// 要对同一树层使用过的元素进行跳过if(i > 0 && candidates[i] == candidates[i-1] && used[i-1] == false) continue ; // 去重 同一树层去重sum += candidates[i];path.push_back(candidates[i]);used[i] = true;backtracking(candidates, target, sum, i + 1, used);used[i] = false;path.pop_back();sum -= candidates[i];}return ;}vector<vector<int>> combinationSum2(vector<int>& candidates, int target) {vector<bool> used(candidates.size(), false);result.clear();path.clear();sort(candidates.begin(), candidates.end());backtracking(candidates, target, 0, 0, used);return result;}
};

131. 分割回文串

题目

在这里插入图片描述

解法

  1. 看完题解之后
class Solution {
private:vector<vector<string>> result;vector<string> path;void backtracking(string s, int startIdx) {if (startIdx >= s.size()) {result.push_back(path);return ;}for (int i = startIdx; i < s.size(); i++) {if(isHuiWen(s, startIdx, i)) {string str = s.substr(startIdx, i - startIdx + 1);path.push_back(str);}else {continue;}backtracking(s, i + 1);path.pop_back();}return ;}bool isHuiWen(string s, int start, int end) {for(int i = start, j = end; i < j; i++, j--) {if(s[i] != s[j]) return false;}return true;}
public:vector<vector<string>> partition(string s) {result.clear();path.clear();backtracking(s, 0);return result;}
};

substr()用法

在C++中,substr() 是一个常用于 std::string 类的成员函数,用于获取字符串的子串。这个函数的基本语法如下:

std::string substr(size_t pos = 0, size_t count = npos) const;
pos:这是子串开始的位置(基于0的索引)。如果 pos 大于字符串的长度,则 substr() 函数会抛出一个 std::out_of_range 异常。
count:这是要提取的字符数。如果 count 是 std::string::npos 或大于从 pos 到字符串末尾的字符数,则子串将包括从 pos 开始到字符串末尾的所有字符。

以下是一些使用 substr() 函数的示例:

#include <iostream>  
#include <string>  int main() {  std::string str = "Hello, World!";  // 从位置0开始,提取5个字符  std::string substr1 = str.substr(0, 5);  // "Hello"  std::cout << substr1 << std::endl;  // 从位置7开始,提取到字符串结束  std::string substr2 = str.substr(7);     // "World!"  std::cout << substr2 << std::endl;  // 从位置7开始,提取4个字符  std::string substr3 = str.substr(7, 4);  // "Worl"  std::cout << substr3 << std::endl;  return 0;  
}
注意,如果提供的 pos 超出了字符串的范围,substr() 函数会抛出一个 std::out_of_range 异常。因此,在使用 substr() 函数时,最好确保 pos 的值在有效范围内。此外,还要注意的是,substr() 函数返回的是一个新的字符串,它包含原字符串中指定位置的子串。原字符串本身不会被修改。

感悟

关键细节要理解清楚,比如startIdx的使用

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

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

相关文章

Faust勒索病毒:了解最新变种[nicetomeetyou@onionmail.org].faust,以及如何保护您的数据

导言&#xff1a; 在一个快节奏的数字世界中&#xff0c;我们经常忽视数据安全的重要性。然而&#xff0c;最新的勒索病毒——[nicetomeetyouonionmail.org].faust、[support2022cock.li].faust、[tsai.shenmailfence.com].faust 、[Encrypteddmailfence.com].faust、[Deciphe…

哪些业务行为是否属于数据出境?

国家互联网办公室出台的《数据出境安全评估申报指南&#xff08;第一版&#xff09;》明确了“数据出境活动”的定义&#xff0c;即包括三种情况&#xff1a; &#xff08;一&#xff09;数据处理者将在境内运营中收集和产生的数据传 输、存储至境外&#xff1b; &#xff08…

Vue打包问题汇总:legacy、runtime.js

问题一&#xff1a;Vue3.x的版本中build后dist文件中出现legacy的js文件 解决办法是添加兼容的浏览器 package.json "browserslist": ["> 1%","last 2 versions","not dead","not ie 11" ]参考 Vue3.x的版本中build后…

Java学习笔记18——深入学习字符串

任何语言&#xff0c;编写的所有应用&#xff0c;大概都会用到大量字符串&#xff0c;以及对字符串进行处理&#xff0c;Java语言中&#xff0c;对与字符串的处理和Python等语言中不同。昨天学习JDBC内容&#xff0c;编写的一个类中比较两个字符串变量值&#xff0c;没有注意到…

.NET高级面试指南专题十八【 外观模式模式介绍,提供了简化的接口,隐藏系统的复杂性】

介绍&#xff1a; 外观模式是一种结构设计模式&#xff0c;它提供了一个统一的接口&#xff0c;用于访问子系统中的一组接口。外观模式定义了一个高层接口&#xff0c;使得子系统更容易使用。 原理&#xff1a; 外观类&#xff08;Facade Class&#xff09;&#xff1a;提供了一…

如何用Python搭建聊天室

项目实战&#xff08;服务器端&#xff09; 1.服务器类 首先需要一个聊天服务器&#xff0c;这里继承asyncore的dispatcher类来实现&#xff0c;代码如下 class ChatServer(dispatcher):"""聊天服务器"""def __init__(self, port):dispatcher…

使用verilog设计有限状态机实现的跳一跳游戏及其testbench仿真测试

设计跳一跳游戏的有限状态机可以分为以下几个主要步骤: 确定状态及状态转移条件: 确定游戏中可能存在的状态,如等待开始、准备跳跃、跳跃中、检查落地等。 确定不同状态之间的转移条件,例如何时从等待开始状态转移到准备跳跃状态,如何触发跳跃动作,跳跃是否成功等。 定…

可视化场景(5):生产监控,比摄像头好用多了。

hello&#xff0c;我是贝格前端工场&#xff0c;本期分享可视化大屏在生产监控场景的应用&#xff0c;如需要定制&#xff0c;可以与我们联络&#xff0c;开始了。 实时监控 可视化大屏可以实时展示生产线上的各种关键指标和数据&#xff0c;如生产速度、设备状态、产量、质量…

html密码访问单页自定义跳转页面源码

内容目录 一、详细介绍二、效果展示1.部分代码2.效果图展示 三、学习资料下载 一、详细介绍 密码访问单页自定义跳转页面&#xff0c;修改了的密码访问单页&#xff0c;添加了js自定义密码跳转页面。需要正确输入密码才能跳转目标网址。 二、效果展示 1.部分代码 代码如下&…

亚马逊、速卖通如何实现批量注册自动养号?

亚马逊和速卖通作为全球领先的跨境电商平台&#xff0c;其账号对于卖家而言具有重要的商业价值。随着跨境电商行业的蓬勃发展&#xff0c;越来越多的人对亚马逊、速卖通账号的需求日益增长&#xff0c;这也催生了批量注册和自动养号的需求。 跨境智星作为一款集成了批量注册账号…

JAVA基础 数组,字符串与正则表达式

数组 数组的概念 将相同类型的数据按一定顺序排列构成的大小确定的集合 数组元素类型可以为基本数据类型&#xff0c;也可以为引用类型 Java语言内存分配 栈内存&#xff1a;基本数据类型的变量或者引用类型的变量&#xff0c;超出作用域将自动释放 堆内存&#xff1a;存…

每日五道java面试题之mybatis篇(二)

目录&#xff1a; 第一题. Mybatis优缺点第二题. Hibernate 和 MyBatis 的区别?第三题. MyBatis编程步骤是什么样的&#xff1f;第四题. 请说说MyBatis的工作原理第五题. MyBatis的功能架构是怎样的? 第一题. Mybatis优缺点 优点 与传统的数据库访问技术相比&#xff0c;ORM…

Leetcode 3.18

Leetcode hot100 二叉树1.路径总和 III2.路径总和 II3.二叉树的所有路径4.二叉树的最近公共祖先 回溯1.电话号码的字母组合 二叉树 1.路径总和 III 路径总和 III 思路&#xff1a;我们访问每一个节点 node&#xff0c;检测以 node 为起始节点且向下延深的路径有多少种。递归遍…

【Linux】Ubuntu22.04中使用ssh、scp时报错:Their offer: ssh-rsa

1、问题描述 使用scp拷贝文件时报错: Unable to negotiate with xxx port 22: no matching host key type found. Their offer: ssh-rsa lost connection2、原因分析 查看OpenSSH版本 ssh -V OpenSSH_8.9p1 Ubuntu-3ubuntu0.6, OpenSSL 3.0.2 15 Mar 2022查看官网的说明:…

【ACL2023获奖论文】比你想的更弱:对弱监督学习的批判性审视

【ACL 2023获奖论文】主题论文奖&#xff1a;7.Weaker Than You Think: A Critical Look at Weakly Supervised Learning 写在最前面引言正文问题1&#xff1a;对WSL来说&#xff0c;clean data是否必要&#xff1f;问题2&#xff1a;WSL需要多少的clean data&#xff1f;问题3…

elasticsearch基础学习

elasticsearch简介 什么是elasticsearch elasticsearch&#xff08;简称es&#xff09;&#xff0c;其核心是 Elastic Stack&#xff0c;es是一个基于 Apache Lucene&#xff08;TM&#xff09;的开源的高扩展的分布式全文检索引擎&#xff0c;它可以近乎实时的存储、检索数据…

如何在开放麒麟系统安装cpolar内网穿透实现公网环境下SSH远程连接

文章目录 1. 安装SSH服务2. 本地SSH连接测试3. openKylin安装Cpolar4. 配置 SSH公网地址5. 公网远程SSH连接小结 6. 固定SSH公网地址7. SSH固定地址连接 openKylin是中国首个基于Linux 的桌面操作系统开发者平台&#xff0c;通过开放操作系统源代码的方式&#xff0c;打造具有自…

裸金属租赁的意义

裸金属&#xff0c;这个名词听起来好“硬核”&#xff0c;如果对于一个新手来讲&#xff0c;怎么也不会将这个概念和IT行业、计算机、服务器等内容进行关联&#xff0c;它可能更应该是工业领域的一种产品或者物质&#xff0c;可真正关联到其实际概念恰恰与当前的主流行业如&…

论文阅读——Align before Fuse

Align before Fuse: Vision and Language Representation Learning with Momentum Distillation image-text contrastive learning(ITC)用在单模态&#xff0c;masked language modeling (MLM) and image-text matching (ITM) 用在多模态。 单模态编码器的表示上引入了中间图像…

机器学习中的基础问题总结

介绍&#xff1a;总结面试经常问到的一些机器学习知识点&#xff08;必会&#x1f31f;&#xff09; 基础知识点梳理 模型评估一、L1、L2正则化1、L1正则与L2正则有何不同&#xff1f;2、为什么正则化可以防止过拟合&#xff1f;3、为什么L1正则具有稀疏性&#xff1f;&#xf…