zoukankan      html  css  js  c++  java
  • 117. Populating Next Right Pointers in Each Node II

     

     

    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











     1 public class Solution {
     2     public void connect(TreeLinkNode root) {
     3         TreeLinkNode head=null;
     4         TreeLinkNode prev =null;
     5         TreeLinkNode cur = root;
     6         
     7         while(cur!=null){
     8             //针对每一层,利用Prev进行next连接
     9             while(cur!=null){
    10                 
    11                 if(cur.left!=null){
    12                     if(prev==null)//prev空,说明cur.left是下一层的头节点。
    13                         head = cur.left;
    14                     else//不为空,正常连接next指针,
    15                         prev.next =cur.left;
    16                     prev = cur.left; //移动prev
    17                 }
    18                 
    19                 if(cur.right!=null){
    20                  if(prev==null)//prev空,说明cur.right是下一层的头节点。
    21                      head = cur.right;
    22                 else //不为空,正常连接next指针,
    23                      prev.next=cur.right;
    24                 prev = cur.right;
    25                 }
    26                 
    27                 cur = cur.next;
    28             }
    29             //此层结束,准备进入下一层。
    30             cur = head;
    31             head = null;
    32             prev = null;
    33         }
    34     }
    35 }
  • 相关阅读:
    死磕itchat源码--core.py
    死磕itchat源码--config.py
    死磕itchat源码--content.py
    死磕itchat源码--__init__.py
    SyntaxError Non-ASCII character 'xe5' in file
    死磕itchat源码--目录结构
    pip是用代理
    `itchat`配置代理
    搭建`wenblogic`执行`install`脚本失败
    sublimeText3的安装及插件的配置使用
  • 原文地址:https://www.cnblogs.com/zle1992/p/8328362.html
Copyright © 2011-2022 走看看