美文网首页
257. 二叉树的所有路径

257. 二叉树的所有路径

作者: DAFFE | 来源:发表于2018-09-26 11:48 被阅读0次

给定一个二叉树,返回所有从根节点到叶子节点的路径。
先序遍历

void iterator(TreeNode* root,vector<string> &res,string s){           
            if(s.empty()) s += to_string(root->val);     
            else s+="->" + to_string(root->val);
            if (root->left == NULL && root->right == NULL)            
                res.push_back(s);         
            if (root->left != NULL)            
                iterator(root->left,res,s);         
            if (root->right != NULL)            
                iterator(root->right,res,s);     
        }
    vector<string> binaryTreePaths(TreeNode* root) {
        vector<string> res;
        if(root == NULL) return res;
        string s;
        iterator(root, res, s);
        return res;
    }

相关文章

网友评论

      本文标题:257. 二叉树的所有路径

      本文链接:https://www.haomeiwen.com/subject/hdydoftx.html