c_cpp all_binary_paths.cpp
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp all_binary_paths.cpp相关的知识,希望对你有一定的参考价值。
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<string> paths;
void add_paths(TreeNode* root,string s){
s=s+to_string(root->val);
if(root->left!=NULL)
add_paths(root->left,s+"->");
if(root->right!=NULL)
add_paths(root->right,s+"->");
if(root->right==NULL && root->left==NULL)
paths.push_back(s);
return ;
}
vector<string> binaryTreePaths(TreeNode* root) {
string s="";
if(root==NULL)
return paths;
add_paths(root,s);
return paths;
}
};
以上是关于c_cpp all_binary_paths.cpp的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 127.单词阶梯
c_cpp MOFSET
c_cpp MOFSET
c_cpp 31.下一个排列
c_cpp string→char *
c_cpp 54.螺旋矩阵