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

[LeetCode]Populating Next Right Pointers in Each Node II

时间:2015-02-03 09:36:45      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:深搜   宽搜   java   leetcode   treelinknode   

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

利用宽搜顺序搜索每一行的二叉树,然后利用深搜搜索该节点的下一个next节点。


/**
 * Definition for binary tree with next pointer.
 * public class TreeLinkNode {
 *     int val;
 *     TreeLinkNode left, right, next;
 *     TreeLinkNode(int x) { val = x; }
 * }
 */
public class Solution {
	Queue<TreeLinkNode> que = new LinkedList<>();
	public void connect(TreeLinkNode root) {
		if (root == null)
			return;
		que.offer(root);
		while (!que.isEmpty()) {
			TreeLinkNode tln = que.poll();
			if (tln.left != null) {
				que.offer(tln.left);
				tln.left.next = dfs2(tln);
			}
			if (tln.right != null) {
				que.offer(tln.right);
				tln.right.next = dfs3(tln.next);
			}
		}
	}
	
	private TreeLinkNode dfs2(TreeLinkNode root){
		if(root == null) return null;
		if(root.right!=null) return root.right;
		if(root.next!=null&&root.next.left!=null){
			return root.next.left;
		}
		return dfs2(root.next);
	}
	
	private TreeLinkNode dfs3(TreeLinkNode root){
		if(root ==null) {
			return null;
		}else{
			if(root.left!=null) return root.left;
			if(root.right!=null)return root.right;
		}
		return dfs3(root.next);
	}
}


[LeetCode]Populating Next Right Pointers in Each Node II

标签:深搜   宽搜   java   leetcode   treelinknode   

原文地址:http://blog.csdn.net/guorudi/article/details/43417967

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