剑指Offer打卡day38 —— AcWing 43. 不分行从上往下打印二叉树
Posted Johnny*
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指Offer打卡day38 —— AcWing 43. 不分行从上往下打印二叉树相关的知识,希望对你有一定的参考价值。
【题目描述】
【思路】
BFS
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public List<Integer> printFromTopToBottom(TreeNode root) {
Queue<TreeNode> q = new LinkedList<>();
List<Integer> ans = new ArrayList<>();
if( root == null ) return ans;
q.offer(root);
while( !q.isEmpty() ){
TreeNode node = q.poll();
ans.add(node.val);
if(node.left!=null) q.offer(node.left);
if(node.right!=null) q.offer(node.right);
}
return ans;
}
}
以上是关于剑指Offer打卡day38 —— AcWing 43. 不分行从上往下打印二叉树的主要内容,如果未能解决你的问题,请参考以下文章
剑指Offer打卡day38 —— AcWing 43. 不分行从上往下打印二叉树
剑指Offer打卡day42—— Acwing 62. 丑数
剑指Offer打卡day42——AcWing 77. 翻转单词顺序