码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 数据结构与算法之LeetCode-662. 二叉树最大宽度 -(DFS,BFS)


    662. 二叉树最大宽度 - 力扣(LeetCode)

    • 根节点的位置为1(index
    • 左子节点的位置就为1*2
    • 右子节点的位置就为1*2+1
      • 节点下标会非常大(2**3000)个子节点,超过JS的number范围,因此需要使用bigint避免溢出
    var widthOfBinaryTree = function(root) {
       // bfs
      const queue = [[root,1n]];
      let max = -1;
      while(queue.length){
        const size = queue.length;
        max = Math.max(max,Number(queue[queue.length-1][1]-queue[0][1]+1n));
        for(let i=0;i<size;i++){
          const [node,index] = queue.shift();
          if(node.left){
             queue.push([node.left,index*2n])
          }
          if(node.right){
            queue.push([node.right,index*2n+1n])
          }
          
        }
      }
      return max
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    执行结果:通过

    执行用时:60 ms, 在所有 JavaScript 提交中击败了98.72%的用户

    内存消耗:47.1 MB, 在所有 JavaScript 提交中击败了31.91%的用户

    通过测试用例:114 / 114

    function widthOfBinaryTree(root: TreeNode | null): number {
        const queue: [TreeNode, bigint][] = [[root, 1n]]
        let max = -1
        while (queue.length) {
            const size = queue.length
            max = Math.max(max, Number(queue[queue.length - 1][1] - queue[0][1] + 1n))
            for (let i = 0; i < size; i++) {
                const [node, index] = queue.shift()
                node?.left && queue.push([node.left, index * 2n])
                node?.right && queue.push([node.right, index * 2n + 1n])
            }
        }
        return max
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    var widthOfBinaryTree = function(root) {
        /** JS 存在计数溢出的问题,使用 BigInt,BigInt 不能调用 Math 中的方法。 */
        let maxWidth = 1n;
        const leftIds = []
        const dfs = (root, level, currIdx) => {
            if (leftIds[level] === undefined) {
                leftIds[level] = currIdx;
            } else {
                const width = currIdx - leftIds[level] + 1n;
                maxWidth = maxWidth > width ? maxWidth : width;
            }
            if (root.left !== null) {
                dfs(root.left, level + 1, currIdx * 2n - 1n);
            }
            if (root.right !== null) {
                dfs(root.right, level + 1, currIdx * 2n);
            }
        }
        dfs(root, 0, 1n);
        return maxWidth;    
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    执行结果:通过

    执行用时:80 ms, 在所有 JavaScript 提交中击败了32.55%的用户

    内存消耗:45.9 MB, 在所有 JavaScript 提交中击败了55.89%的用户

    通过测试用例:114 / 114

    参考链接

    662. 二叉树最大宽度 - 力扣(LeetCode)

    二叉树最大宽度 - 二叉树最大宽度 - 力扣(LeetCode)

    【wendraw】BFS 的简单应用 - 二叉树最大宽度 - 力扣(LeetCode)

    [662. 二叉树最大宽度 - 二叉树最大宽度 - 力扣(LeetCode)](

  • 相关阅读:
    Windows/Linux/Mac 系统局域网服务发现协议及传输速度比较
    Dubbo入门(三)Consumer的编写
    Chrome浏览器中比较实用的一些插件(油猴、文字复制、广告拦截、视频倍速、文献下载)
    华纳云:如何实现数据库的读写分离?
    SLAM中提到的相机位姿到底指什么?
    数据库:Hive转Presto(四)
    String 常用方法
    C++多态(2)
    YOLOv8独家最新改进《新颖高效AsDDet检测头》独一无二的结构改进,公开数据集mAP高效涨点,即插即用|检测头新颖改进,性能高效涨点
    [附源码]计算机毕业设计springboot汽车美容店管理系统
  • 原文地址:https://blog.csdn.net/qq_25482087/article/details/126594432
  • 最新文章
  • 【FHE】我们如何实现同态加密推理(八):SiLU 的密文化——两条路径,和一个 8 字节的开关
    SQLcl 中 c/old/new 替换变量为何失效?先定位再替换
    不让模型写作文,直接从它脑子里读答案:Jev 决策在 .NET 的两条路线
    Halo插件:支持GitHub的图床附件策略
    电视投屏界的“一股清流”!SimpleTVCast 6.0.0-beta 抢先体验:无需TV端App,界面大换血!✨
    华三VXLAN集中式网关实战指南:Spine多活网关 + 双活接入(M-LAG)
    软件更好写之后口碑会更重要
    大 O、大 Omega、大 Theta 的区别,O(n) 复杂度是什么意思
    Java标签跳转:一个鲜为人知但却很实用的小技巧
    多智能体系统论文速读
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号