码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode - Binary Tree Level Order Traversal II

时间:2014-10-03 19:41:45      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:des   style   color   io   os   ar   for   sp   c   

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]
]

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
struct TreeNode
{
	int val;
	TreeNode *left;
	TreeNode *right;
	TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
    std::vector<std::vector<int> > levelOrderBottom(TreeNode *root) {
        dfs(root,0);
		std::reverse(res.begin(),res.end());
		return res;
    }
private:
	std::vector<std::vector<int>> res;
	void dfs(TreeNode *root, int level)
	{
		if(root == NULL) return;
		if(level == res.size())
		{
			res.push_back(std::vector<int>());
		}
		res[level].push_back(root->val);
		dfs(root->left,level+1);
		dfs(root->right,level+1);
	}
};


leetcode - Binary Tree Level Order Traversal II

标签:des   style   color   io   os   ar   for   sp   c   

原文地址:http://blog.csdn.net/akibatakuya/article/details/39756273

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!