검지offer-59-지그재그 순서로 두 갈래 트리 인쇄-자바 구현
12788 단어 알고리즘과 데이터 구조
제목
함수는 지그재그로 두 갈래 트리를 인쇄합니다. 즉, 첫 번째 줄은 왼쪽에서 오른쪽으로, 두 번째 줄은 오른쪽에서 왼쪽으로, 세 번째 줄은 왼쪽에서 오른쪽으로, 다른 줄은 이와 같이 인쇄합니다.
분석
사고방식1:
시간 복잡도: o(N) 공간 복잡도: o(N)
코드:
import java.util.ArrayList;
import java.util.Stack;
/*
public class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
*/
public class Solution {
public ArrayList<ArrayList<Integer> > Print(TreeNode pRoot) {
int layer = 1;
Stack<TreeNode> s1 = new Stack<TreeNode>();//
s1.push(pRoot);
Stack<TreeNode> s2 = new Stack<TreeNode>();//
ArrayList<ArrayList<Integer>> list = new ArrayList<ArrayList<Integer>>();
while(!s1.empty()||!s2.empty()) {
//
if((layer%2)!=0){
ArrayList<Integer> tmp = new ArrayList<Integer>();
while(!s1.empty()){
TreeNode node = s1.pop();
if(node!=null){
tmp.add(node.val);
System.out.print(node.val+" ");
s2.push(node.left);
s2.push(node.right);
}
}
if(!tmp.isEmpty()) {
list.add(tmp);
layer++;
System.out.println();
}
} else{
ArrayList<Integer> tmp = new ArrayList<Integer>();
while(!s2.empty()){
TreeNode node = s2.pop();
if(node!=null){
tmp.add(node.val);
System.out.print(node.val+" ");
s1.push(node.right);
s1.push(node.left);
}
}
if(!tmp.isEmpty()){
list.add(tmp);
layer++;
System.out.println();
}
}
}
return list;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python3를 사용하여 빠른 배열 정렬
2020년 새해 복 많이 받으세요.저는 ryuichi69라고 합니다.오늘도 알고리즘 연습의 성과, 연습을 설명하는 동시에 이 글을 썼다.솔직히 이해하기 쉽게 쓰느라 힘들었는데 설명하기 어려운 부분, 요건 누락 등이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
import java.util.ArrayList;
import java.util.Stack;
/*
public class TreeNode {
int val = 0;
TreeNode left = null;
TreeNode right = null;
public TreeNode(int val) {
this.val = val;
}
}
*/
public class Solution {
public ArrayList<ArrayList<Integer> > Print(TreeNode pRoot) {
int layer = 1;
Stack<TreeNode> s1 = new Stack<TreeNode>();//
s1.push(pRoot);
Stack<TreeNode> s2 = new Stack<TreeNode>();//
ArrayList<ArrayList<Integer>> list = new ArrayList<ArrayList<Integer>>();
while(!s1.empty()||!s2.empty()) {
//
if((layer%2)!=0){
ArrayList<Integer> tmp = new ArrayList<Integer>();
while(!s1.empty()){
TreeNode node = s1.pop();
if(node!=null){
tmp.add(node.val);
System.out.print(node.val+" ");
s2.push(node.left);
s2.push(node.right);
}
}
if(!tmp.isEmpty()) {
list.add(tmp);
layer++;
System.out.println();
}
} else{
ArrayList<Integer> tmp = new ArrayList<Integer>();
while(!s2.empty()){
TreeNode node = s2.pop();
if(node!=null){
tmp.add(node.val);
System.out.print(node.val+" ");
s1.push(node.right);
s1.push(node.left);
}
}
if(!tmp.isEmpty()){
list.add(tmp);
layer++;
System.out.println();
}
}
}
return list;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python3를 사용하여 빠른 배열 정렬2020년 새해 복 많이 받으세요.저는 ryuichi69라고 합니다.오늘도 알고리즘 연습의 성과, 연습을 설명하는 동시에 이 글을 썼다.솔직히 이해하기 쉽게 쓰느라 힘들었는데 설명하기 어려운 부분, 요건 누락 등이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.