码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode Populating Next Right Pointers in Each Node

时间:2014-05-22 03:03:39      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   c   code   java   

bubuko.com,布布扣
/**
根据完美二叉树或者非完美二叉树都可以,利用左右子树的根节点的next节点信息来连接next
*/
public
void connect(TreeLinkNode root){ if(root==null) return; //利用父节点的next链接节点 if(root.left!=null){ root.left.next=root.right; } if(root.right!=null&&root.next!=null){ root.right.next=root.next.left; } connect(root.left); connect(root.right); }
bubuko.com,布布扣

 

leetcode Populating Next Right Pointers in Each Node,布布扣,bubuko.com

leetcode Populating Next Right Pointers in Each Node

标签:style   blog   class   c   code   java   

原文地址:http://www.cnblogs.com/csxf/p/3738484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!