首页 > 其他 > 详细

LeetCode 257:Binary Tree Paths

时间:2015-12-31 16:04:49      阅读:141      评论:0      收藏:0      [点我收藏+]

Given a binary tree, return all root-to-leaf paths.

For example, given the following binary tree:

   1
 /   2     3
   5

All root-to-leaf paths are:

["1->2->5", "1->3"]

Credits:

Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.

//简单的二叉树遍历,遍历的过程中记录之前的路径,一旦遍历到叶子节点便将该路径加入结果中。
class Solution {
public:
	vector<string> binaryTreePaths(TreeNode* root) {
		vector<string> res;
		if (root==NULL)   return res;
		binaryTreePaths(res, root, to_string(root->val));
		return res;
	}

	void binaryTreePaths(vector<string>& result, TreeNode* node, string s) {
		if (node->left==NULL && node->right==NULL)
		{
			result.push_back(s);
			return;
		}
		if (node->left)     binaryTreePaths(result, node->left, s + "->" + to_string(node->left->val));
		if (node->right)    binaryTreePaths(result, node->right, s + "->" + to_string(node->right->val));
	}
};

技术分享

LeetCode 257:Binary Tree Paths

原文:http://blog.csdn.net/geekmanong/article/details/50442000

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!