首页 > 代码库 > Populating Next Right Pointers in Each Node
Populating Next Right Pointers in Each Node
1 /** 2 * Definition for binary tree with next pointer. 3 * public class TreeLinkNode { 4 * int val; 5 * TreeLinkNode left, right, next; 6 * TreeLinkNode(int x) { val = x; } 7 * } 8 */ 9 public class Solution {10 public void connect(TreeLinkNode root) {11 if(root!=null)12 {13 TreeLinkNode current=root;14 TreeLinkNode first=root;15 List<TreeLinkNode> list=new ArrayList<TreeLinkNode>();16 while(current!=null)17 {18 if(current.left!=null)19 list.add(current.left);//全部加入到list中 然后一个个指向next20 if(current.right!=null)21 list.add(current.right);22 23 if(current.next!=null)24 current=current.next;25 else26 break;27 28 }29 for(int i=0;i<list.size()-1;i++)30 {31 list.get(i).next=list.get(i+1);32 }33 34 if(first.left!=null)35 connect(first.left);//采用递归36 }37 }38 39 }
Populating Next Right Pointers in Each Node
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。