算法笔记(二叉树1)

leetcode144 二叉树的前序遍历

递归版本

public List<Integer> preorderTraversal(TreeNode root) {List<Integer> res = new ArrayList<>();preorder(root, res);return res;
}public void preorder(TreeNode root, List<Integer> res) {if (root == null) {return;}res.add(root.val);preorder(root.left, res);preorder(root.right, res);
}

非递归版本:利用栈模拟

public List<Integer> preorderTraversal(TreeNode root) {List<Integer> res = new ArrayList<>();//利用栈模拟非递归遍历Stack<TreeNode> stack = new Stack<>();if (root == null) {return res;}stack.push(root);while (!stack.isEmpty()) {TreeNode pop = stack.pop();res.add(pop.val);if (pop.right != null) {stack.push(pop.right);}if (pop.left != null) {stack.push(pop.left);}}return res;
}

leetcode94 二叉树的中序遍历

 List<Integer> list = new ArrayList<>();public List<Integer> inorderTraversal(TreeNode root) {mid(root);return list;
}private void mid(TreeNode root) {if (root == null) return;mid(root.left);list.add(root.val);mid(root.right);
}

非递归版本

public List<Integer> inorderTraversal(TreeNode root) {List<Integer> result = new ArrayList<>();if (root == null) {return result;}Stack<TreeNode> stack = new Stack<>();TreeNode cur = root;while (cur != null || !stack.isEmpty()) {if (cur != null) {stack.push(cur);cur = cur.left;} else {cur = stack.pop();result.add(cur.val);cur = cur.right;}}return result;
}

leetcode145 二叉树的后序遍历

public List<Integer> postorderTraversal(TreeNode root) {List<Integer> list = new ArrayList();if (root == null) {return list;}postorder(root, list);return list;
}private void postorder(TreeNode root, List<Integer> list) {if (root == null) {return;}postorder(root.left, list);postorder(root.right, list);list.add(root.val);
}

非递归版本

public List<Integer> postorderTraversal(TreeNode root) {List<Integer> res = new ArrayList<>();if (root == null) {return res;}Stack<TreeNode> stack = new Stack<>();stack.push(root);while (!stack.isEmpty()) {TreeNode node = stack.pop();res.add(node.val);if (node.left != null) {stack.push(node.left);}if (node.right != null) {stack.push(node.right);}}Collections.reverse(res);return res;
}

leetcode102 二叉树的层序遍历

public List<List<Integer>> levelOrder(TreeNode root) {List<List<Integer>> res = new ArrayList<>();Queue<TreeNode> queue = new LinkedList<>();if (root == null) {return res;}queue.add(root);while (!queue.isEmpty()) {int size = queue.size();List<Integer> temp = new ArrayList<>();for (int i = 0; i < size; i++) {TreeNode node = queue.poll();temp.add(node.val);if (node.left != null) {queue.offer(node.left);}if (node.right != null) {queue.offer(node.right);}}res.add(temp);}return res;
}

leetcode199 二叉树的右视图

在层序遍历中只加入该层的最后一个节点

public List<Integer> rightSideView(TreeNode root) {List<Integer> res = new ArrayList<>();Queue<TreeNode> queue = new LinkedList<>();if (root == null) {return res;}queue.add(root);while (!queue.isEmpty()) {int size = queue.size();for (int i = 0; i < size; i++) {TreeNode poll = queue.poll();if (poll.left != null) {queue.add(poll.left);}if (poll.right != null) {queue.add(poll.right);}if (i == size - 1) {res.add(poll.val);}}}return res;
}

leetcode637 二叉树层的平均值

public List<Double> averageOfLevels(TreeNode root) {List<Double> res = new ArrayList<>();Queue<TreeNode> queue = new LinkedList<>();if (root == null) {return res;}queue.add(root);while (!queue.isEmpty()) {double temp = 0;int size = queue.size();for (int i = 0; i < size; i++) {TreeNode node = queue.poll();temp += node.val;if (node.left != null) {queue.add(node.left);}if (node.right != null) {queue.add(node.right);}}temp = temp / size;res.add(temp);}return res;
}

leetcode429 N叉树的层序遍历

public List<List<Integer>> levelOrder(Node root) {List<List<Integer>> res = new ArrayList<>();Queue<Node> queue = new LinkedList<>();if (root == null) {return res;}queue.add(root);while (!queue.isEmpty()) {int size = queue.size();List<Integer> temp = new ArrayList<>();for (int i = 0; i < size; i++) {Node poll = queue.poll();temp.add(poll.val);List<Node> children = poll.children;for (int j = 0; j < children.size(); j++) {if (children.get(j) != null) {queue.add(children.get(j));}}}res.add(temp);}return res;
}

leetcode515 在每个树行中的最大值

public List<Integer> largestValues(TreeNode root) {List<Integer> res = new ArrayList<>();if (root == null) {return res;}Queue<TreeNode> queue = new LinkedList<>();queue.add(root);while (!queue.isEmpty()) {int size = queue.size();int temp = Integer.MIN_VALUE;for (int i = 0; i < size; i++) {TreeNode poll = queue.poll();temp = Math.max(temp, poll.val);if (poll.left != null) {queue.add(poll.left);}if (poll.right != null) {queue.add(poll.right);}}res.add(temp);}return res;
}

leetcode116 填充每个节点的右侧指针

public Node connect(Node root) {Queue<Node> queue = new LinkedList<>();if (root == null) {return null;}queue.add(root);while (!queue.isEmpty()) {int size = queue.size();Node poll = queue.poll();if (poll.left != null) {queue.add(poll.left);}if (poll.right != null) {queue.add(poll.right);}for (int i = 1; i < size; i++) {Node cur = queue.poll();if (cur.left != null) {queue.add(cur.left);}if (cur.right != null) {queue.add(cur.right);}poll.next = cur;poll = cur;}}return root;
}

leetcode104 二叉树的最大深度

 public int maxDepth(TreeNode root) {if (root == null) {return 0;}int left = maxDepth(root.left);int right = maxDepth(root.right);return Math.max(left, right) + 1;
}

leetcode226 翻转二叉树

public TreeNode invertTree(TreeNode root) {if (root == null) {return root;}TreeNode t = root.left;root.left = root.right;root.right = t;invertTree(root.left);invertTree(root.right);return root;
}

leetcode101 对称二叉树

public boolean isSymmetric(TreeNode root) {if (root == null) {return true;}return check(root.left, root.right);
}public boolean check(TreeNode left, TreeNode right) {if (left == null && right != null) {return false;} else if (left != null && right == null) {return false;} else if (left == null && right == null) {return true;} else if (left.val != right.val) {return false;}//比较外侧节点boolean bool1 = check(left.left, right.right);//比较内侧节点boolean bool2 = check(left.right, right.left);return bool1 && bool2;
}

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

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

相关文章

【电子数据取证】如何快速在CSV中找到涉案手机号码

文章关键词&#xff1a;电子数据取证、聊天记录恢复、数据恢复、手机取证、介质取证 一、前言 在最近的取证工作中&#xff0c;我们遇到很多需要从大量的聊天记录数据中提取特定的信息&#xff0c;例如手机号码&#xff0c;银行号码&#xff0c;交易码。由于数据通常以数据库…

ipython的使用与详解

Ai文章推荐 1 作为程序员&#xff0c;开发用过最好用的AI工具有哪些&#xff1f; 2 Github Copilot正版的激活成功&#xff0c;终于可以chat了 3 idea,pycharm等的ai assistant已成功激活 4 新手如何拿捏 Github Copilot AI助手&#xff0c;帮助你提高写代码效率 5 Jetbrains的…

Linux系统下多网卡多网关设置

场景一&#xff1a; 主机AB得网卡1和网卡2都分别划分在VLAN1和VLAN2中&#xff0c;主机C在VLAN3中&#xff0c;VLAN1&#xff0c;2&#xff0c;3在三层交换设备上配置好网关192.168.1.1 192.168.2.1 192.168.3.1&#xff0c;并开启三层交换功能。 主机A的两块网卡分别IP为192…

Linter 与code formatter之python 编程起手式

1. Linter 与code formatter Linting and code formatting are essential practices in software development, particularly in Python, to maintain code quality, readability, and consistency. Let’s delve into their functions and how to use them in PyCharm when w…

Sectigo OV通配符SSL证书多少钱?

在网络安全领域&#xff0c;SSL数字证书起着至关重要的作用&#xff0c;尤其是在保护网站和用户信息方面。而Sectigo OV通配符证书是一种常用的数字证书之一&#xff0c;它能够为同一域名下的多个子域名提供保护&#xff0c;还能够通过企业验证来增强安全性。那么&#xff0c;对…

边缘检测(一)-灰度图像边缘检测方法

灰度图像边缘检测是数字图像处理与机器视觉中经常遇到的一个问题&#xff0c;边缘检测是否连续、光滑是判断检测方法优劣的一个重要标准&#xff0c;下面通过一个实例提供灰度图像边缘检测方法&#xff0c;该方法对其他图像检测也具有一定的参考价值。 首先&#xff0c;读入一幅…

inpaint下载安装2024-inpaint软件安装包下载v5.0.6官网最新版附加详细安装步骤

Inpaint软件最新版是一款功能强大的图片去水印软件&#xff0c;这款软件拥有强大的智能算法&#xff0c;能够根据照片的背景为用户去除照片中的各种水印&#xff0c;并修补好去除水印后的图片。并且软件操作简单、界面清爽&#xff0c;即使是修图新手也能够轻松上手&#xff0c…

面向对象编程基本概念

面向过程概述 面向过程编程&#xff0c;就是一种以过程为中心的编程思想。 分析出解决问题所需要的步骤&#xff0c;然后用函数把步骤一步一步实现。使用的时候一个一个依次调用。 面向对象编程 面向对象编程是一种对是世界理解和抽象的编程方法&#xff0c;把相关的数据和…

Python3 笔记:upper()、isupper()、lower()、islower()、swapcase()

1、upper() 方法将字符串中的小写字母转为大写字母。 语法&#xff1a;str.upper() 2、isupper() 方法检测字符串中所有的字母是否都为大写。 语法&#xff1a;str.isupper() 如果字符串中包含至少一个区分大小写的字符&#xff0c;并且所有这些(区分大小写的)字符都是大写…

2023年全国大学生数学建模竞赛C题蔬菜类商品的自动定价与补货决策(含word论文和源代码资源)

文章目录 一、题目二、word版实验报告和源代码&#xff08;两种获取方式&#xff09; 一、题目 2023高教社杯全国大学生数学建模竞赛题目 C题 蔬菜类商品的自动定价与补货决策 在生鲜商超中&#xff0c;一般蔬菜类商品的保鲜期都比较短&#xff0c;且品相随销售时间的增加而…

雨水情监测系统解决方案

一、系统介绍 水库雨水情自动测报系统辅助水利管理部门实现水库雨水情信息“全要素、全量程、全覆盖”自动测报。系统具备水库水位、雨量、现场图像/视频等水文信息采集、传输、处理及预警广播等功能&#xff0c;有效提升了雨水情信息的时效性和准确度&#xff0c;为保障水库安…

CSS 表单设计指南

CSS 表单设计指南 引言 在网页设计中&#xff0c;表单是用户与网站交互的重要方式。一个设计良好的表单不仅能够提高用户体验&#xff0c;还能有效提升数据收集的效率。CSS&#xff08;层叠样式表&#xff09;作为网页设计的关键技术之一&#xff0c;可以极大地改善表单的外观…

【网络协议栈】IGMP

IGMP IGMP&#xff08;Internet Group Management Protocol&#xff09;是互联网组管理协议的简称&#xff0c;属于TCP/IP协议族中负责IPv4组播成员管理的协议。以下是关于IGMP的详细介绍&#xff1a; 1 定义与作用 定义&#xff1a;IGMP是多播组成员的一种通信协议&#xf…

国内docker镜像加速

自己注册一个阿里云或者华为云的账户&#xff0c;搜索镜像 点击开通&#xff0c;再点击镜像加速器&#xff0c;可以看到自己的加速器地址&#xff0c;然后替换就可以了。再去pull即可成功&#xff0c;但是响应还是要慢一点

创建应用程序

自学python如何成为大佬(目录):https://blog.csdn.net/weixin_67859959/article/details/139049996?spm1001.2014.3001.5501 使用wxPython之前&#xff0c;先来了解两个基础对象&#xff1a;应用程序对象和顶级窗口。 应用程序对象管理主事件循环&#xff0c;主事件循环是wx…

PostgreSQL源码分析——视图查询重写

这里我们分析一下查询重写的过程&#xff0c;主要分析视图的查询重写的过程。通过以下语句进行分析&#xff1a; create table t1(a int, b int); insert into t1 values(1,1); -- 创建视图 create view vt1 as select * from t1; -- 查询 select * from vt1;查询重写过程分析…

鸿蒙实战开发:网络层的艺术——优雅封装与搭建指南(下)

前言 在前两篇文章中,我们深入探讨了网络层的封装和优化技巧。本文将带您走进网络层的实战应用,从架构设计到具体实现,一步步指导您如何使用我们精心构建的网络框架。 一、网络层架构设计 在鸿蒙应用开发中,一个清晰、合理的网络层架构是保证项目可维护性和扩展性的关键…

发那科机器人IO 分配

IO 信号 也称为输入\输出信号&#xff0c;是机器人与外围设备通信的电信号

ROS 1的相机驱动代码迁移到ROS 2的方法

为了将ROS 1的相机驱动代码迁移到ROS 2&#xff0c;你需要对代码进行一系列的修改&#xff0c;包括但不限于更新消息类型、API调用和构建系统。 ### 步骤1&#xff1a;更新消息类型 - sensor_msgs/Image和cv_bridge在ROS 2中是可用的&#xff0c;但是确保你使用的是ROS 2版本的…

[CODE:-5504]没有[SYS.SYSOBJECTS]对象的查询权限

报错解释&#xff1a; 错误代码 [CODE:-5504] 表示用户尝试执行一个涉及到系统表 SYS.SYSOBJECTS 的查询&#xff0c;但是没有获得相应的查询权限。SYS.SYSOBJECTS 是一个系统表&#xff0c;包含了数据库中所有对象的信息&#xff0c;例如表、视图、存储过程等。 解决方法&am…