力扣面试150 填充每个节点的下一个右侧节点指针 II BFS 逐层构建法

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

🍻 BFS 空间优化

👩‍🏫 参考题解

  • ⏰ 时间复杂度: O ( n ) O(n) O(n)
  • 🌎 空间复杂度: O ( 1 ) O(1) O(1)
Java 复制代码
class Solution {
    public Node connect(Node root) {
        if (root == null) {
            return null;
        }
        Node ans = root;
        Node cur = root;// 上一层链表的头结点
        while(cur != null){
            Node head = new Node(-1), tail = head;// 当前层的头尾结点
            for(Node i = cur; i != null; i = i.next){ // 遍历上一层链表的每个节点的左右孩子
                if(i.left != null){// 先加左孩子到当前层的链表
                    tail.next = i.left;
                    tail = tail.next;
                }
                if(i.right != null){// 再加右孩子到当前层的链表
                    tail.next = i.right;
                    tail = tail.next;
                }
            }
            cur = head.next;// 移动到下一层
        }
        
        return ans;
    }
}
相关推荐
重生之Java开发工程师44 分钟前
⭐MySQL的底层原理与架构
数据库·mysql·面试·架构
工一木子1 小时前
【Leecode】Leecode刷题之路第99天之恢复二叉搜索树
java·算法·leetcode·二叉树·中序遍历
Espresso Macchiato1 小时前
Leetcode 3407. Substring Matching Pattern
leetcode·字符串匹配·leetcode easy·leetcode 3407·leetcode双周赛147
Smark.1 小时前
(leetcode算法题)371. 两整数之和
算法·leetcode
KpLn_HJL1 小时前
leetcode - 1769. Minimum Number of Operations to Move All Balls to Each Box
算法·leetcode·职场和发展
00Allen002 小时前
XXX公司面试真题
java·算法·面试·职场和发展·idea
uhakadotcom3 小时前
跟着coze学习几种OAuth鉴权方式的原理、设计、适用场景
后端·面试·github
测试界柠檬4 小时前
14:00面试,14:08就出来了,问的问题有点变态。。。
自动化测试·软件测试·功能测试·程序人生·面试·职场和发展
清炒孔心菜4 小时前
每日一题 382. 链表随机节点
leetcode