검지offer 제2판 - 32.3.지그재그 인쇄 두 갈래 나무
면접 문제 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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.