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

0211 花一分钟和一辈子看透事物本质的人,过的并非同样的生活

时间:2020-02-11 09:15:50      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:public   data   null   new   ptr   serialize   本质   tree   color   

LC297

 

class Codec
{
public:
//Encode a tree to a single string.
string serialize(TreeNode* root)
    {
    ostringstream out;
    serialize(root,out);
    //str() 返回ostringsteam里的临时值
    return out.str();

    }//es
TreeNode* deserialize(string data)
    {
        istringstream in(data);
        return deserialize(in);
    }
private:
    void serialize(TreeNode* root,ostringstream& out)
    {
        if(!root)
        {
            out<<"# ";
            return;
        }
        out<<root->val<<" ";
        serialize(root->left,out);
        serialize(root->right,out);
    }

TreeNode* deserialize(istringstream& in)
    {
        string val;
        in>>val;
        if(val=="#") return nullptr;
        TreeNode* root=new TreeNode(stoi(val));
        root->left=deserialize(in);
        root->right=deserialize(in);
        return root;
    }
};

 

0211 花一分钟和一辈子看透事物本质的人,过的并非同样的生活

标签:public   data   null   new   ptr   serialize   本质   tree   color   

原文地址:https://www.cnblogs.com/Marigolci/p/12293742.html

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