LintCode 71-이 진 트 리 의 톱니 모양 층 이 널리 퍼 져 있다.
사고방식 은 매우 간단 하 다.양 끝 대기 열 을 차원 으로 옮 겨 다 니 는 지원 구조 로 사용 한 다음 에 하나의 불 형 변수 로 다음 층 을 옮 겨 다 니 는 것 이 팀 의 머리 인지 팀 의 끝 인지 제어 한다.
public class Solution {
/**
* @param root: The root of binary tree.
* @return: A list of lists of integer include
* the zigzag level order traversal of its nodes' values
*/
public ArrayList> zigzagLevelOrder(TreeNode root) {
// write your code here
ArrayList> res = new ArrayList>();
if (root == null) {
return res;
}
ArrayList floor = new ArrayList<>();
Deque deque = new ArrayDeque<>();
TreeNode last = root;
deque.offer(root);
boolean nextPoll = true;
while (!deque.isEmpty()) {
TreeNode temp = nextPoll? deque.poll(): deque.pollLast();
floor.add(temp.val);
if (nextPoll) {
if (temp.left != null) {
deque.offer(temp.left);
}
if (temp.right != null) {
deque.offer(temp.right);
}
} else {
if (temp.right != null) {
deque.offerFirst(temp.right);
}
if (temp.left != null) {
deque.offerFirst(temp.left);
}
}
if (last == temp) {
res.add(floor);
floor = new ArrayList<>();
last = nextPoll? deque.peek(): deque.peekLast();
nextPoll = !nextPoll;
}
}
return res;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.