二叉树 - 二叉树的层序遍历

2024-08-21 16:44
文章标签 二叉树 遍历 层序

本文主要是介绍二叉树 - 二叉树的层序遍历,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

二叉树的层序遍历

102. 二叉树的层序遍历

在这里插入图片描述
在这里插入图片描述

/*** Definition for a binary tree node.* function TreeNode(val, left, right) {*     this.val = (val===undefined ? 0 : val)*     this.left = (left===undefined ? null : left)*     this.right = (right===undefined ? null : right)* }*/
/*** @param {TreeNode} root* @return {number[][]}*/
var levelOrder = function (root) {// 二叉树的层序遍历let res = [], queue = [];queue.push(root);if (root === null) {return res;}while (queue.length !== 0) {// 记录当前层级节点数let length = queue.length;// 存放每一层的节点let curLevel = [];for (let i = 0; i < length; i++) {let node = queue.shift();curLevel.push(node.val);// 存放当前层下一层的节点node.left && queue.push(node.left);node.right && queue.push(node.right);}// 把每一层的结果放到结果数组res.push(curLevel);}return res;
}

107. 二叉树的层序遍历 II

在这里插入图片描述
在这里插入图片描述

/*** Definition for a binary tree node.* function TreeNode(val, left, right) {*     this.val = (val===undefined ? 0 : val)*     this.left = (left===undefined ? null : left)*     this.right = (right===undefined ? null : right)* }*/
/*** @param {TreeNode} root* @return {number[][]}*/
var levelOrderBottom = function (root) {let res = [], queue = [];queue.push(root);while (queue.length && root !== null) {// 存放当前层级节点数组let curLevel = [];// 计算当前层级节点数量let length = queue.length;while (length--) {let node = queue.shift();// 把当前层节点存入curLevel数组curLevel.push(node.val);// 把下一层级的左右节点存入queue队列node.left && queue.push(node.left);node.right && queue.push(node.right);}//  从数组前头插入值,避免最后反转数组,减少运算时间res.unshift(curLevel);}return res;
}

199. 二叉树的右视图

在这里插入图片描述
在这里插入图片描述

/*** Definition for a binary tree node.* function TreeNode(val, left, right) {*     this.val = (val===undefined ? 0 : val)*     this.left = (left===undefined ? null : left)*     this.right = (right===undefined ? null : right)* }*/
/*** @param {TreeNode} root* @return {number[]}*/
var rightSideView = function (root) {// 二叉树右视图 只需要把每一层最后一个节点存储到res数组let res = [], queue = [];queue.push(root);while (queue.length && root !== null) {// 记录当前层级节点个数let length = queue.length;while (length--) {let node = queue.shift();// length长度为0的时候表明到了层级最后一个节点if (!length) {res.push(node.val);}node.left && queue.push(node.left);node.right && queue.push(node.right);}}return res;
};

637. 二叉树的层平均值

在这里插入图片描述
在这里插入图片描述

var averageOfLevels = function (root) {let res = [], queue = [];queue.push(root);while (queue.length) {// 每一层节点个数let lengthLevel = queue.length,len = queue.length,// sum记录每一层的和sum = 0;while (lengthLevel--) {const node = queue.shift();sum += node.val;// 队列存放下一层节点node.left && queue.push(node.left);node.right && queue.push(node.right);}// 求平均值res.push(sum / len);    }return res;
};

429. N叉树的层序遍历

在这里插入图片描述
在这里插入图片描述

/*** // Definition for a _Node.* function _Node(val,children) {*    this.val = val;*    this.children = children;* };*//*** @param {_Node|null} root* @return {number[][]}*/
var levelOrder = function (root) {// 每一层可能有两个以上,所以不再使用node.left node.rightlet res = [], queue = [];queue.push(root);while (queue.length && root !== null) {// 记录每一层节点个数还是和二叉树一致let length = queue.length;// 存放每层节点 也和二叉树一致let curLevel = [];while (length--) {let node = queue.shift();curLevel.push(node.val);// 这里不再是 node.left node.right 而是循环node.childrenfor (let item of node.children) {item && queue.push(item);}}res.push(curLevel);}return res;
};

515. 在每个树行中找最大值

在这里插入图片描述
在这里插入图片描述

/*** Definition for a binary tree node.* function TreeNode(val, left, right) {*     this.val = (val===undefined ? 0 : val)*     this.left = (left===undefined ? null : left)*     this.right = (right===undefined ? null : right)* }*/
/*** @param {TreeNode} root* @return {number[]}*/
var largestValues = function (root) {let res = [], queue = [];queue.push(root);if (root === null) {return res;}while (queue.length) {let lengthLevel = queue.length,// 初始值设为负无穷大max = -Infinity;while (lengthLevel--) {const node = queue.shift();// 在当前层中找到最大值max = Math.max(max, node.val);// 找到下一层的节点node.left && queue.push(node.left);node.right && queue.push(node.right);}res.push(max);}return res;
}

116. 填充每个节点的下一个右侧节点指针

在这里插入图片描述

/*** // Definition for a _Node.* function _Node(val, left, right, next) {*    this.val = val === undefined ? null : val;*    this.left = left === undefined ? null : left;*    this.right = right === undefined ? null : right;*    this.next = next === undefined ? null : next;* };*//*** @param {_Node} root* @return {_Node}*/
var connect = function (root) {if (root === null) {return root;}let queue = [root];while (queue.length) {let n = queue.length;for (let i = 0; i < n; i++) {let node = queue.shift();if (i < n - 1) {node.next = queue[0];}node.left && queue.push(node.left);node.right && queue.push(node.right);}}return root;
}

117. 填充每个节点的下一个右侧节点指针 II

在这里插入图片描述
在这里插入图片描述

/*** // Definition for a _Node.* function _Node(val, left, right, next) {*    this.val = val === undefined ? null : val;*    this.left = left === undefined ? null : left;*    this.right = right === undefined ? null : right;*    this.next = next === undefined ? null : next;* };*//*** @param {_Node} root* @return {_Node}*/
var connect = function (root) {if (root === null) {return null;}let queue = [root];while (queue.length > 0) {let n = queue.length;for (let i = 0; i < n; i++) {let node = queue.shift();if (i < n - 1) node.next = queue[0];if (node.left !== null) queue.push(node.left);if (node.right !== null) queue.push(node.right);}}return root;
};

104. 二叉树的最大深度

在这里插入图片描述

在这里插入图片描述

var maxDepth = function (root) {// 二叉树的 最大深度 是指从根节点到最远叶子结点的最长路径上的节点数// 叶子节点是指没有子节点的节点let max = 0, queue = [root];if (root === null) {return max;}while (queue.length) {max++;let length = queue.length;while (length--) {let node = queue.shift();node.left && queue.push(node.left);node.right && queue.push(node.right);}}return max;
};

111. 二叉树的最小深度

在这里插入图片描述
在这里插入图片描述

/*** Definition for a binary tree node.* function TreeNode(val, left, right) {*     this.val = (val===undefined ? 0 : val)*     this.left = (left===undefined ? null : left)*     this.right = (right===undefined ? null : right)* }*/
/*** @param {TreeNode} root* @return {number}*/
var minDepth = function (root) {if (root === null) return 0;let queue = [root];let depth = 0;while (queue.length) {let n = queue.length;depth++;for (let i = 0; i < n; i++) {let node = queue.shift();// 如果左右节点都是null(在遇见的第一个leaf节点上),则该节点深度最小if (node.left === null && node.right === null) {return depth;}node.left && queue.push(node.left);node.right && queue.push(node.right);}}return depth;
};

这篇关于二叉树 - 二叉树的层序遍历的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1093711

相关文章

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

根据一棵树的前序遍历与中序遍历构造二叉树。 注意: 你可以假设树中没有重复的元素。 例如,给出 前序遍历 preorder = [3,9,20,15,7]中序遍历 inorder = [9,3,15,20,7] 返回如下的二叉树: 3/ \9 20/ \15 7   class Solution {public TreeNode buildTree(int[] pr

PHP实现二叉树遍历(非递归方式,栈模拟实现)

二叉树定义是这样的:一棵非空的二叉树由根结点及左、右子树这三个基本部分组成,根据节点的访问位置不同有三种遍历方式: ① NLR:前序遍历(PreorderTraversal亦称(先序遍历)) ——访问结点的操作发生在遍历其左右子树之前。 ② LNR:中序遍历(InorderTraversal) ——访问结点的操作发生在遍历其左右子树之中(间)。 ③ LRN:后序遍历(PostorderT

react笔记 8-17 属性绑定 class绑定 引入图片 循环遍历

1、绑定属性 constructor(){super()this.state={name:"张三",title:'我是一个title'}}render() {return (<div><div>aaaaaaa{this.state.name}<div title={this.state.title}>我是一个title</div></div></div>)} 绑定属性直接使用花括号{}   注

在二叉树中找到两个节点的最近公共祖先(基于Java)

如题  题解 public int lowestCommonAncestor(TreeNode root, int o1, int o2) {//记录遍历到的每个节点的父节点。Map<Integer, Integer> parent = new HashMap<>();Queue<TreeNode> queue = new LinkedList<>();parent.put(roo

数据结构--二叉树(C语言实现,超详细!!!)

文章目录 二叉树的概念代码实现二叉树的定义创建一棵树并初始化组装二叉树前序遍历中序遍历后序遍历计算树的结点个数求二叉树第K层的结点个数求二叉树高度查找X所在的结点查找指定节点在不在完整代码 二叉树的概念 二叉树(Binary Tree)是数据结构中一种非常重要的树形结构,它的特点是每个节点最多有两个子节点,通常称为左子节点和右子节点。这种结构使得二叉树在数据存储和查找等方面具

hashmap的存值,各种遍历方法

package com.jefflee;import java.util.HashMap;import java.util.Iterator;import java.util.Map;public class HashmapTest {// 遍历Hashmap的四种方法public static void main(String[] args) {//hashmap可以存一个null,把

Knight Moves -uva 简单的BFS遍历

昨天刚学了BFS的遍历,在uva上找了个题敲了出来,感觉还不错,最近敲代码挺有手感的,希望这种状态保持下去 #include<iostream>#include<stdio.h>#include<stdlib.h>#include<string.h>#define MAX_SIZE 10 + 5#define LEN 100 + 10using namespace std;in

笔试强训,[NOIP2002普及组]过河卒牛客.游游的水果大礼包牛客.买卖股票的最好时机(二)二叉树非递归前序遍历

目录 [NOIP2002普及组]过河卒 牛客.游游的水果大礼包 牛客.买卖股票的最好时机(二) 二叉树非递归前序遍历 [NOIP2002普及组]过河卒 题里面给的提示很有用,那个马的关系,后面就注意,dp需要作为long的类型。 import java.util.Scanner;// 注意类名必须为 Main, 不要有任何 package xxx 信息publ

222.完全二叉树的节点个数

(写给未来遗忘的自己) 题目: 代码: class Solution {public:int countNodes(TreeNode* root) {queue<TreeNode*>node_que;if(root==nullptr) return 0;node_que.push(root);int result;while(!node_que.empty()){int layer_s

代码随想录 -- 二叉树 -- 平衡二叉树

110. 平衡二叉树 - 力扣(LeetCode) 思路:仍然是递归调用 1. 定义一个递归函数 count 用来计算二叉树的层数 2. isBalanced 函数:如果传入根节点为空返回真;如果根节点 | 左子树的层数 - 右子树的层数 | 大于1,返回假;最后返回根节点左子树、右子树是否是平衡二叉树。 class Solution(object):def count(self,root