标签:binary tree level order traversa botom
Given a binary tree, return the bottom-up level order traversal of its nodes‘ values. (ie, from left to right, level by level from leaf to root).
For example:
Given binary tree {3,9,20,#,#,15,7}
,
3 / 9 20 / 15 7
return its bottom-up level order traversal as:
[ [15,7], [9,20], [3] ]
confused what "{1,#,2,3}"
means? >
read more on how binary tree is serialized on OJ.
The serialization of a binary tree follows a level order traversal, where ‘#‘ signifies a path terminator where no node exists below.
Here‘s an example:
1 / 2 3 / 4 5The above binary tree is serialized as
"{1,2,3,#,#,4,#,#,5}"
./** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ public class Solution { public List<List<Integer>> levelOrderBottom(TreeNode root) { List<List<Integer>>list=new ArrayList<List<Integer>>();//存储结果 if(root==null) return list; Queue<TreeNode>q1=new LinkedList<TreeNode>();//交替存储相邻两层的结点 Queue<TreeNode>q2=new LinkedList<TreeNode>(); Queue<TreeNode>temp=null; List<Integer>subList=null;//存储一层的结点的值 q1.add(root); TreeNode top=null; while(!q1.isEmpty()) { subList=new ArrayList<Integer>(); while(!q1.isEmpty())//循环遍历一层结点并将下一层结点存储到队列中 { top=q1.peek(); q1.poll(); if(top.left!=null) q2.add(top.left); if(top.right!=null) q2.add(top.right); subList.add(top.val); } list.add(subList); temp=q2;//交换两个队列的值,使q1一直指向要遍历的那一层 q2=q1; q1=temp; } int len=list.size(); int num=len-1; len/=2; for(int i=0;i<len;i++)//交换位置 { subList=list.get(i); list.set(i,list.get(num-i)); list.set(num-i,subList); } return list; } }
leetcode_107_Binary Tree Level Order Traversal II
标签:binary tree level order traversa botom
原文地址:http://blog.csdn.net/mnmlist/article/details/44491277