검지offer 제2판 - 32.3.지그재그 인쇄 두 갈래 나무

2884 단어
본 시리즈 내비게이션: 검지offer(제2판)java 내비게이션 게시판 구현
면접 문제 32.3: 지그재그 프린트 트리
제목 요구: 함수를 지그재그로 인쇄하는 두 갈래 트리를 실현하십시오.즉, 첫 번째 레이어는 왼쪽에서 오른쪽으로, 두 번째 레이어는 오른쪽에서 왼쪽으로, 세 번째 레이어는 왼쪽에서 오른쪽으로 계속 인쇄됩니다.
문제 풀이 사고방식: k줄은 왼쪽에서 오른쪽으로, k+1줄은 오른쪽에서 왼쪽으로 인쇄하면 두 개의 창고로 실현할 수 있다.또한 왼쪽에서 오른쪽으로 접근하느냐, 오른쪽에서 왼쪽으로 접근하느냐에 따라 좌우 하위 노드를 눌러 넣는 순서도 다르다는 것을 주의해야 한다.
package structure;
import java.util.LinkedList;
import java.util.Queue;
/**
 * Created by ryder on 2017/6/12.
 *  
 */
public class TreeNode {
    public T val;
    public TreeNode left;
    public TreeNode right;
    public TreeNode(T val){
        this.val = val;
        this.left = null;
        this.right = null;
    }
}
package chapter4;
import structure.TreeNode;
import java.util.Stack;
/**
 * Created by ryder on 2017/7/18.
 *  
 */
public class P176_printTreeInSpecial {
    public static void printTreeInSpeical(TreeNode root){
        if(root==null)
            return;
        Stack> stack1 = new Stack<>();
        Stack> stack2 = new Stack<>();
        TreeNode temp;
        stack1.push(root);
        while(!stack1.isEmpty() || !stack2.isEmpty()){
            if(!stack1.isEmpty()) {
                while (!stack1.isEmpty()) {
                    temp = stack1.pop();
                    System.out.print(temp.val);
                    System.out.print('\t');
                    if (temp.left != null)
                        stack2.push(temp.left);
                    if (temp.right != null)
                        stack2.push(temp.right);
                }
            }
            else {
                while (!stack2.isEmpty()) {
                    temp = stack2.pop();
                    System.out.print(temp.val);
                    System.out.print('\t');
                    if (temp.right != null)
                        stack1.push(temp.right);
                    if (temp.left != null)
                        stack1.push(temp.left);
                }
            }
            System.out.println();
        }
    }
    public static void main(String[] args){
        //            1
        //          /   \
        //         2     3
        //       /  \   / \
        //      4    5 6   7
        TreeNode root = new TreeNode(1);
        root.left = new TreeNode(2);
        root.right = new TreeNode(3);
        root.left.left = new TreeNode(4);
        root.left.right = new TreeNode(5);
        root.right.left = new TreeNode(6);
        root.right.right = new TreeNode(7);
        printTreeInSpeical(root);
    }
}

실행 결과
1111

좋은 웹페이지 즐겨찾기