博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
107. Binary Tree Level Order Traversal II
阅读量:5292 次
发布时间:2019-06-14

本文共 920 字,大约阅读时间需要 3 分钟。

/** * Definition for a binary tree node. * public class TreeNode { *     int val; *     TreeNode left; *     TreeNode right; *     TreeNode(int x) { val = x; } * } */public class Solution {    public List
> levelOrderBottom(TreeNode root) { List
> res=new ArrayList
>(); if(root==null) return res; Queue
q=new LinkedList
(); q.offer(root); int size=q.size(); int count=0; List
templist=new ArrayList
(); while(!q.isEmpty()) { TreeNode temp=q.poll(); if(temp.left!=null) q.offer(temp.left); if(temp.right!=null) q.offer(temp.right); count++; templist.add(temp.val); if(count==size) { size=q.size(); count=0; res.add(templist); templist=new ArrayList
(); } } List
> revres=new ArrayList
>(); for(int i=res.size()-1;i>=0;i--) revres.add(res.get(i)); return revres; }}

 

转载于:https://www.cnblogs.com/aguai1992/p/5348189.html

你可能感兴趣的文章
1_fbauto
查看>>
IO体系、集合体系、多线程、jdbc
查看>>
关于时间:UTC/GMT/xST/ xDT
查看>>
[51Nod1089] 最长回文子串 V2(Manacher算法)
查看>>
Asp.Net生命周期系列六
查看>>
php引用 =& 详解
查看>>
Codeforces 914D Bash and a Tough Math Puzzle (ZKW线段树)
查看>>
POJ 3009: Curling 2.0
查看>>
DLNA介绍(包含UPnP,2011/6/20 更新)
查看>>
ANGULARJS5从0开始(2) - 整合bootstrap和font-awesome
查看>>
Android 使用Parcelable序列化对象
查看>>
Python Web框架Django (零)
查看>>
Foxmail出现 错误信息:553 mailbox not found怎么解决
查看>>
spring_远程调用
查看>>
js 中基本数据类型和引用数据类型 ,,,, js中对象和函数的关系
查看>>
登录服务器,首先用到的5个命令
查看>>
多米诺骨牌
查看>>
区间DP 等腰三角形
查看>>
mysql 存储引擎对索引的支持
查看>>
Linq 学习(1) Group & Join--网摘
查看>>