Populating Next Right Pointers in Each Node II (LeetCode)

本文深入探讨解决复杂二叉树节点链接问题的方法,对比使用深度优先搜索(DFS)与广度优先搜索(BFS)的策略。详细解释了如何仅使用常数额外空间完成任务,并通过实例展示了不同搜索方式的实现过程及效率对比。

Follow up for problem "Populating Next Right Pointers in Each Node".

What if the given tree could be any binary tree? Would your previous solution still work?

Note:

  • You may only use constant extra space.

For example,
Given the following binary tree,

         1
       /  \
      2    3
     / \    \
    4   5    7

After calling your function, the tree should look like:

         1 -> NULL
       /  \
      2 -> 3 -> NULL
     / \    \
    4-> 5 -> 7 -> NULL

看到这题首先想的是用dfs,和I一样,后来发现总是有test case通不过,开始考虑是不是bfs更好,于是转用queue实现level order traversal,同时两个变量cur和next来记录当前level的节点数和下一个level的节点数,另外,每次访问完一个节点,把它保存在变量node中,当下次访问它的邻居时,就可以用node.next指向邻居了。

public void connect(TreeLinkNode root) {
        if(root==null)
            return;
        Queue<TreeLinkNode> queue = new LinkedList<TreeLinkNode>();
        queue.add(root);
        int cur = 1, next =0;
        TreeLinkNode node = null;
        while(!queue.isEmpty()){
            root = queue.remove();
            if(root.left!=null){
                queue.add(root.left);
                next++;
            }
            if(root.right!=null){
                queue.add(root.right);
                next++;
            }
            cur--;
            if(node!=null)
                node.next=root;
            node=root;
            if(cur==0){
                cur = next;
                next=0;
                node=null;
            }    
        }
        
    }





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值