首页 > 代码库 > LeetCode 117 Populating Next Right Pointers in Each Node II
LeetCode 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
Anwser 1:
public void connect(TreeLinkNode root) { if (null == root) { return; } TreeLinkNode cur = root.next; TreeLinkNode p = null; while (cur != null) { // find last right node (left or right) if (cur.left != null) { p = cur.left; break; } if (cur.right != null) { p = cur.right; break; } cur = cur.next; } if (root.right != null) { root.right.next = p; } if (root.left != null) { root.left.next = root.right != null ? root.right : p; } connect(root.right); // from right to left connect(root.left); }
注意点:
1) list为非完美二叉树,右分支可能为空,因此从right -> left 遍历
2) 从最右分支开始查找,且root没有 left 节点,则找 right 节点
Anwser 2:
1) 新增一个Q2队列,保存下一行的全部元素,辅助判断是最后一个元素(Q为空)则置为NULL
2) queue队列实现比递归要好
Anwser 3:
1) list为非完美二叉树,右分支可能为空,因此从right -> left 遍历
2) 从最右分支开始查找,且root没有 left 节点,则找 right 节点
Anwser 2:
public void connect(TreeLinkNode root) { if (null == root) { return; } LinkedList<TreeLinkNode> Q = new LinkedList<TreeLinkNode>(); // save one // line // root(s) LinkedList<TreeLinkNode> Q2 = new LinkedList<TreeLinkNode>(); ; // save next one line root(s), swap with Q Q.push(root); while (!Q.isEmpty()) { TreeLinkNode tmp = Q.getFirst(); Q.pop(); if (tmp.left != null) Q2.add(tmp.left); if (tmp.right != null) Q2.add(tmp.right); if (Q.isEmpty()) { tmp.next = null; LinkedList<TreeLinkNode> tmpQ = Q; // swap queue Q = Q2; Q2 = tmpQ; } else { tmp.next = Q.getFirst(); } } }注意点:
1) 新增一个Q2队列,保存下一行的全部元素,辅助判断是最后一个元素(Q为空)则置为NULL
2) queue队列实现比递归要好
Anwser 3:
public void connect(TreeLinkNode root) { LinkedList<TreeLinkNode> queue = new LinkedList<TreeLinkNode>(); if (root == null) return; TreeLinkNode p; queue.add(root); queue.add(null);// flag while (!queue.isEmpty()) { p = queue.pop(); if (p != null) { if (p.left != null) { queue.add(p.left); } if (p.right != null) { queue.add(p.right); } p.next = queue.getFirst(); } else { if (queue.isEmpty()) { return; } queue.add(null); } } }
LeetCode 117 Populating Next Right Pointers in Each Node II
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。