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

[刷题] 257 Binary Tree Paths

时间:2020-04-12 10:44:25      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:onclick   number   eve   code   思路   左右子树   要求   表示   path   

要求

  • 给定一棵二叉树,返回所有表示从根节点到叶子节点路径的字符串

思路

  • 递归地返回左右子树到叶子节点的字符串

示例

技术图片
 1 class Solution {
 2 public:
 3     vector<string> binaryTreePaths(TreeNode* root) {
 4         
 5         vector<string> res;
 6         
 7         if( root == NULL )
 8             return res;
 9             
10         if( root->left == NULL && root->right == NULL){
11             res.push_back( to_string(root->val) );
12             return res;
13         }
14         
15         vector<string> leftS = binaryTreePaths(root->left);
16         for( int i = 0 ; i < leftS.size() ; i ++ )
17             res.push_back( to_string(root->val) + "->" + leftS[i]);
18         
19         vector<string> rightS = binaryTreePaths(root->right);
20         for( int i = 0 ; i < rightS.size() ; i ++ )
21             res.push_back( to_string(root->val) + "->" + rightS[i]);
22             
23         return res;
24     }
25 };
View Code

相关

  • 113 Path Sum II
  • 129 Sum Root to Leaf Numbers

[刷题] 257 Binary Tree Paths

标签:onclick   number   eve   code   思路   左右子树   要求   表示   path   

原文地址:https://www.cnblogs.com/cxc1357/p/12683870.html

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