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

480 二叉树的所有路径

时间:2018-07-02 17:45:08      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:lan   push   style   div   you   string   tree   view   HERE   

原题网址:https://www.lintcode.com/problem/binary-tree-paths/description

描述

给一棵二叉树,找出从根节点到叶子节点的所有路径。

您在真实的面试中是否遇到过这个题?  

样例

给出下面这棵二叉树:

   1
 /   2     3
   5

所有根到叶子的路径为:

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

标签
二叉树遍历
二叉树
 
思路
 
AC代码:
/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */

class Solution {
public:
    /**
     * @param root: the root of the binary tree
     * @return: all root-to-leaf paths
     */
    vector<string> binaryTreePaths(TreeNode * root) {
        // write your code here
     vector<string> result;
     if (root==NULL)
     {
         return result;
     }
     string s="";
     int2str(root->val,s);
     if (root->left==NULL&&root->right==NULL)
     {
         result.push_back(s);
         return result;
     }
     if (root->left)
     {
         tra(result,s,root->left);
     }
     if (root->right)
     {
         tra(result,s,root->right);
     } 
     return result;
    }
    
    void tra(vector<string> &result,string s,TreeNode * root)//s不需要定义成引用类型,不需要保存其上一步结果,因为二叉树向下递归时s值自然累加节点值;
{
    string tmp;
    int2str(root->val,tmp);
    s=s+"->"+tmp;
    if (root->left==NULL&&root->right==NULL)
    {
        result.push_back(s);
        return ;
    }
    if (root->left)
    {
        tra(result,s,root->left);
    }
    if (root->right)
    {
        tra(result,s,root->right);
    }
    
}
    
    void int2str(const int &int_tmp,string &string_tmp)
{
    stringstream s;
    s<<int_tmp;
    string_tmp=s.str();//或者 s>>string_tmp;
}
};

 

lintcode今天抽风,快被气死……
 
 
 

480 二叉树的所有路径

标签:lan   push   style   div   you   string   tree   view   HERE   

原文地址:https://www.cnblogs.com/Tang-tangt/p/9254829.html

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