LeetCode 35 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
분석:
여기서 내가 생각한 것은 층층이 훑어보는 동시에 층을 나누기 위해 두 개의 대열이 교체되는 방식으로 훑어보는 것이다.
나는 이것이 constant 공간이라고 할 수 있는지 모르겠다.
/**
 * Definition for binary tree with next pointer.
 * public class TreeLinkNode {
 *     int val;
 *     TreeLinkNode left, right, next;
 *     TreeLinkNode(int x) { val = x; }
 * }
 */
public class Solution {
    public void connect(TreeLinkNode root) {
        if(root == null)
            return;
            
        Queue<TreeLinkNode> q1 = new LinkedList<TreeLinkNode>();
        Queue<TreeLinkNode> q2 = new LinkedList<TreeLinkNode>();
        q1.add(root);
        while(q1.size()>0 || q2.size()>0){
            while(q1.size()>0){
                TreeLinkNode temp = q1.remove();
                temp.next = q1.peek();
                if(temp.left != null) q2.add(temp.left);
                if(temp.right != null) q2.add(temp.right);
            }
            
            while(q2.size()>0){
                TreeLinkNode temp = q2.remove();
                temp.next = q2.peek();
                if(temp.left != null) q1.add(temp.left);
                if(temp.right != null) q1.add(temp.right);
            }
        }
    }
}

좋은 웹페이지 즐겨찾기