C++ 根据二叉树创建字符串
Posted qnbk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 根据二叉树创建字符串相关的知识,希望对你有一定的参考价值。
根据二叉树创建字符串
题目描述
题目来源:力扣
class Solution {
public:
string tree2str(TreeNode* root)
{
string s;
_tree2str(root,s);
return s;
}
void _tree2str(TreeNode* root,string& str) {
if(root == nullptr)
{
return ;
}
str += to_string(root->val);
if(root->left || root->right)
{
str += '(';
_tree2str(root->left,str);
str += ')';
}
if(root->right)
{
str += '(';
_tree2str(root->right,str);
str += ')';
}
}
};
以上是关于C++ 根据二叉树创建字符串的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode Algorithm 606. 根据二叉树创建字符串
LeetCode Algorithm 606. 根据二叉树创建字符串
LeetCode 606 根据二叉树创建字符串[二叉树 dfs] HERODING的LeetCode之路
二叉树有关习题整理543二叉树的直径 606根据二叉树创建字符串 KY11二叉树遍历 - 牛客105从前序遍历与中序遍历构造二叉树