代码随想录算法训练营第36期DAY21

DAY21

513找树左下角的值

自己写的,过了(注意到层序遍历中,que队头存的是最左边的节点,再写一个getheight函数控制最大高度就好)。待会看解析,掌握迭代、递归。

优化迭代法:不用找最大深度,直接记录每层的res,用i=0记录。While结束前的那层,就是最后一层。

  1. /**
  2.  * Definition for a binary tree node.
  3.  * struct TreeNode {
  4.  *     int val;
  5.  *     TreeNode *left;
  6.  *     TreeNode *right;
  7.  *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8.  *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9.  *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10.  * };
  11.  */
  12. class Solution {
  13. public:
  14.     int geth(TreeNode* root)
  15.     {
  16.         if(root==nullptrreturn 0;
  17.         return 1+max(geth(root->left),geth(root->right));
  18.     }
  19.     int findBottomLeftValue(TreeNode* root) {
  20.         queue<TreeNode*> que;
  21.         int res;
  22.         int h=geth(root);
  23.         int hn=0;
  24.         if(root!=nullptr)que.push(root);
  25.         while(!que.empty())
  26.         {
  27.             hn++;
  28.             int size=que.size();
  29.             for(int i=0;i<size;i++)
  30.             {
  31.                 TreeNode* node=que.front();
  32.                 que.pop();
  33.                 res=node->val;
  34.                 if(node->left) que.push(node->left);
  35.                 if(node->right) que.push(node->right);
  36.                 if(node->left==nullptr&&node->right==nullptr&&hn==h) return res;
  37.             }
  38.         }
  39.         return -1;
  40.     }
  41. };

递归:

112路径总和

  1. /**
  2.  * Definition for a binary tree node.
  3.  * struct TreeNode {
  4.  *     int val;
  5.  *     TreeNode *left;
  6.  *     TreeNode *right;
  7.  *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8.  *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9.  *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10.  * };
  11.  */
  12. class Solution {
  13. public:
  14.     bool isp(TreeNode* root,int t)
  15.     {
  16.         if(!root->left&&!root->right&&t==0return true;
  17.         if(!root->left&&!root->right) return false;
  18.         if(root->left){
  19.             if(isp(root->left,t-root->left->val)) return true;
  20.         }
  21.         if(root->right){
  22.             if(isp(root->right,t-root->right->val)) return true;
  23.         }
  24.         return false;
  25.     }
  26.     bool hasPathSum(TreeNode* root, int targetSum) {
  27.         if(root==nullptr) return false;
  28.         return isp(root,targetSum-root->val);
  29.     }
  30. };

113路径总和ii

  1. /**
  2.  * Definition for a binary tree node.
  3.  * struct TreeNode {
  4.  *     int val;
  5.  *     TreeNode *left;
  6.  *     TreeNode *right;
  7.  *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8.  *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9.  *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10.  * };
  11.  */
  12. class Solution {
  13. private:
  14.     vector<vector<int>> result;
  15.     vector<int> path;
  16.     void isp(TreeNode* root,int t)
  17.     {
  18.         if(!root->left&&!root->right&&t==0) {result.push_back(path);return;}
  19.         if(!root->left&&!root->right) return ;
  20.         if(root->left){
  21.             path.push_back(root->left->val);
  22.             isp(root->left,t-root->left->val); 
  23.             path.pop_back();
  24.         }
  25.         if(root->right){
  26.             path.push_back(root->right->val);
  27.             isp(root->right,t-root->right->val);
  28.             path.pop_back();
  29.         }
  30.         return;
  31.     }
  32. public:
  33.     vector<vector<int>> pathSum(TreeNode* root, int targetSum) {
  34.         result.clear();
  35.         path.clear();
  36.         if(root==nullptr) return result;
  37.         path.push_back(root->val);
  38.         isp(root,targetSum-root->val);
  39.         return result;
  40.     }
  41. };

已学习:由遍历序列构造二叉树_王道数据结构

学会了手写,但是编程实现呢?下面就是实例。

106从中序与后序遍历序列构造二叉树

  1. /**
  2.  * Definition for a binary tree node.
  3.  * struct TreeNode {
  4.  *     int val;
  5.  *     TreeNode *left;
  6.  *     TreeNode *right;
  7.  *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8.  *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9.  *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10.  * };
  11.  */
  12. class Solution {
  13. private:
  14.     TreeNode* ft(vector<int>inorder,vector<int>postorder)
  15.     {
  16.         if(inorder.size()==0return NULL;
  17.         int rootval=postorder[postorder.size()-1];
  18.         TreeNode* root=new TreeNode(rootval);
  19.         if(postorder.size()==1return root;
  20.         postorder.resize(postorder.size()-1);
  21.         int index=0;
  22.         for(;index<inorder.size();index++)
  23.         {
  24.             if(inorder[index]==rootval) break;
  25.         }
  26.         vector<intLI(inorder.begin(),inorder.begin()+index);
  27.         vector<intRI(inorder.begin()+index+1,inorder.end());
  28.         vector<intLpo(postorder.begin(),postorder.begin()+LI.size());
  29.         vector<intRpo(postorder.begin()+LI.size(),postorder.end());
  30.         root->left=ft(LI,Lpo);
  31.         root->right=ft(RI,Rpo);
  32.         return root;
  33.     }
  34. public:
  35.     TreeNode* buildTree(vector<int>& inorder, vector<int>& postorder) {
  36.         if(inorder.size()==0||inorder.size()==0return nullptr;
  37.         return ft(inorder,postorder);
  38.     }
  39. };

105从前序与中序遍历构造二叉树

  1. /**
  2.  * Definition for a binary tree node.
  3.  * struct TreeNode {
  4.  *     int val;
  5.  *     TreeNode *left;
  6.  *     TreeNode *right;
  7.  *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
  8.  *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
  9.  *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
  10.  * };
  11.  */
  12. class Solution {
  13. private:
  14.     TreeNode* ft(vector<int>preorder,vector<int>inorder)
  15.     {
  16.         if(inorder.size()==0return NULL;
  17.         int rootval=preorder[0];
  18.         TreeNode* root=new TreeNode(rootval);
  19.         if(preorder.size()==1return root;
  20.         for(int i=0;i<preorder.size()-1;i++)
  21.             preorder[i]=preorder[i+1];
  22.         preorder.resize(preorder.size()-1);
  23.         int index=0;
  24.         for(;index<inorder.size();index++)
  25.         {
  26.             if(inorder[index]==rootval) break;
  27.         }
  28.         vector<intLI(inorder.begin(),inorder.begin()+index);
  29.         vector<intRI(inorder.begin()+index+1,inorder.end());
  30.         vector<intLpr(preorder.begin(),preorder.begin()+LI.size());
  31.         vector<intRpr(preorder.begin()+LI.size(),preorder.end());
  32.         root->left=ft(Lpr,LI);
  33.         root->right=ft(Rpr,RI);
  34.         return root;
  35.     }
  36. public:
  37.     TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
  38.         if(inorder.size()==0||preorder.size()==0return nullptr;
  39.         return ft(preorder,inorder);
  40.     }
  41. };

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

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

相关文章

2024年4月17日华为春招实习试题【三题】-题目+题解+在线评测,2024.4.17,华为机试

2024年4月17日华为春招实习试题【三题】-题目题解在线评测 &#x1f52e;题目一描述&#xff1a;扑克牌消消乐输入描述输出描述样例一样例二Limitation解题思路一&#xff1a;模拟&#xff0c;遇到连续3张相同牌号的卡牌&#xff0c;直接删除解题思路二&#xff1a;栈解题思路三…

Scala里的class、object、case class、case object 、trait

Class&#xff08;类&#xff09; 定义和作用 Scala 中的 class 是一种蓝图&#xff0c;用于创建对象&#xff08;实例&#xff09;。它定义了对象的状态和行为。类可以包含字段&#xff08;属性&#xff09;和方法&#xff08;函数&#xff09;。类可以有构造器&#xff0c;…

Tarjan算法模板

一、最近公共祖先&#xff08;LCA&#xff09; LCA&#xff1a;Least Common Ancestor P3379 【模板】最近公共祖先&#xff08;LCA&#xff09; #include <bits/stdc.h>using namespace std; typedef long long ll;ll quickin(void) {ll ret 0;bool flag false;cha…

【notepad++】使用

1 notepad 下载路径 https://notepad-plus.en.softonic.com/download 2 设置护眼模式 . 设置——语言格式设置——前景色——黑色 . 背景色——RGB &#xff1a;199 237 204 . 勾选“使用全局背景色”、“使用全局前景色” . 保存并关闭

2009-2022年上市公司华证ESG评级评分数据(含细分项)

2009-2022年上市公司华证ESG评级评分数据&#xff08;含细分项&#xff09; 1、时间&#xff1a;2009-2022年 2、来源&#xff1a;华证ESG 3、指标&#xff1a;证券代码、证券简称、综合评级、年度、综合得分、E评级、E得分、S评级、S得分、G评级、G得分 4、范围&#xff1…

PXE 批量安装部署

目录 一、PEX批量部署优点 二、PXE&#xff1a;预启动执行环境 三、搭建PXE远程服务器 要想全自动安装 接下来请看步骤&#xff1a; 一、PEX批量部署优点 规模化&#xff1a;同时装配多台服务器自动化&#xff1a;安装系统 配置各种服务远程实现&#xff1a;不需要光盘&…

Buuctf-Misc题目练习

打开后是一个gif动图&#xff0c;可以使用stegsolve工具进行逐帧看。 File Format:文件格式 Data Extract:数据提取 Steregram Solve:立体试图 可以左右控制偏移 Frame Browser:帧浏览器 Image Combiner:拼图&#xff0c;图片拼接 所以可以知道我们要选这个Frame Browser …

编程新伙伴:如何利用ChatGPT提升代码编写效率

编程是一项既需要逻辑思维又需要创造性的技术活动。而现在&#xff0c;ChatGPT&#xff0c;一款由OpenAI研发的人工智能&#xff0c;可以帮助你更高效地编写代码。这款AI工具被设计成理解和产生人类的自然语言&#xff0c;现在也得以应用于编程领域。那么&#xff0c;ChatGPT如…

SQL查询语句(二)逻辑运算关键字

上一篇文章中我们提到了条件查询除了一些简单的数学符号之外&#xff0c;还有一些用于条件判断的关键字&#xff0c;如逻辑判断 关键字AND,OR,NOT和范围查找关键字BETWEEN,IN等&#xff1b;下面我们来介绍一些这些关键字的用法以及他们所表达的含义。 目录 逻辑运算关键字 AND…

在K8S中,集群可以做哪些优化?

在Kubernetes&#xff08;简称K8s&#xff09;集群中&#xff0c;可以进行多种优化以提升性能、稳定性和资源利用率。以下是一些常见的优化措施&#xff1a; 控制面组件优化&#xff1a; kube-apiserver 高可用与扩展&#xff1a;通过配置多个API服务器实例并使用负载均衡器分发…

用户管理中心——数据库设计用户注册逻辑设计

用户管理中心——数据库设计&用户注册逻辑设计 规整项目目录1. 数据库自动生成器的使用实现基本的数据库操作&#xff08;操作user表&#xff09; 2. 注册逻辑的设计(1) 写注册逻辑(2) 实现(3) 测试代码 3. 遇到的问题 规整项目目录 utils–存放工具类&#xff0c;比如加密…

信息系统架构基本概念及发展_1.概述和发展

信息系统架构&#xff08;Information Systems Architecture&#xff0c;ISA&#xff09;是一种体系结构&#xff0c;它反映了一个政府、企业或事业单位信息系统的各个组成部分之间的关系&#xff0c;以及信息系统与相关业务&#xff0c;信息系统与相关技术之间的关系。 1.信息…

leetCode33. 搜索旋转排序数组

leetCode33. 搜索旋转排序数组 题目思路 此题的特点是&#xff1a;排好序循环的数组&#xff1a;特点&#xff1a;可以分为两个区间&#xff0c;一半升序&#xff0c;一半降序&#xff0c;或者全部升序 我们可以用二分法&#xff0c;找出升序 到降序的那个临界值&#xff0c;并…

基于Springboot 的 Excel表格的导入导出

首先 &#xff0c;引入相关依赖EasyPOI <dependency><groupId>cn.afterturn</groupId><artifactId>easypoi-spring-boot-starter</artifactId><version>4.4.0</version></dependency> 编写实体类&#xff1a; Data AllArgs…

产品需求文档怎么写?超详细的产品需求文档PRD模板来了!

产品需求文档怎么写&#xff1f;如何写一份简洁明了、外行人看了就能秒懂的产品需求文档呢&#xff1f;今天这篇文章&#xff0c;就来和大家分享如何编写一份高质量的产品需求文档 PRD&#xff01; 下图是来自 boardmix 模板社区的「产品需求文档」模板&#xff0c;它给出了一…

2024.05.07作业

#include "widget.h" #include "ui_widget.h"Widget::Widget(QWidget *parent): QWidget(parent), ui(new Ui::Widget) {ui->setupUi(this);//窗口相关设置this->resize(540,415);this->setFixedSize(540,415);//窗口标题this->setWindowTitle…

C++变量的作用域与存储类型

一 变量的作用域和存储类型 1 变量的作用域(Scope) 指在源程序中定义变量的位置及其能被读写访问的范围分为局部变量(Local Variable)和全局变量(Global Variable) 1&#xff09;局部变量(Local Variable) 在语句块内定义的变量 形参也是局部变量 特点&#xff1a; 生存期是…

用vim或gvim编辑程序

vim其实不难使用&#xff0c;学习一下就好了。简单功能很快学会。它有三种模式&#xff1a;命令模式&#xff0c;编辑模式&#xff0c;视模式。打开时在命令模式。在命令模式下按 i 进入编辑模式&#xff0c;在编辑模式下按<Esc>键退出编辑模式。在命令模式按 :wq 保存文…

Linux —— 信号(3)

Linux —— 信号&#xff08;3&#xff09; Core dump为什么core默认是被关闭的阻塞信号信号其他相关常见概念信号递达信号未决信号阻塞两者的区别信号的结构 信号集操作函数一个简单使用例子sigpending的使用例子 我们今天接着来了解信号&#xff1a; Core dump 大家不知道有…

Linux网络-PXE高效批量网络装机(命令+截图详细版)

目录 一.部署PXE远程安装服务 1.PXE概述 1.1.PXE批量部署的优点 1.2.要搭建PXE网络体系的前提条件 2.搭建PXE远程安装服务器 2.1.修改相关网络配置&#xff08;仅主机模式&#xff09; 2.2.关闭防火墙&#xff08;老规矩&#xff09; 2.3.保证挂载上 2.4.准备好配置文…