LeetCode297. Serialize and Deserialize Binary Tree
题目
序列化是将一个数据结构或者对象转换为连续的比特位的操作,进而可以将转换后的数据存储在一个文件或者内存中,同时也可以通过网络传输到另一个计算机环境,采取相反方式重构得到原数据。
请设计一个算法来实现二叉树的序列化与反序列化。这里不限定你的序列 / 反序列化算法执行逻辑,你只需要保证一个二叉树可以被序列化为一个字符串并且将这个字符串反序列化为原始的树结构。
示例:
你可以将以下二叉树: 1
/ \
2 3
/ \
4 5 序列化为"[1,2,3,null,null,4,5]"提示: 这与 LeetCode 目前使用的方式一致,详情请参阅 LeetCode 序列化二叉树的格式。你并非必须采取这种方式,你也可以采用其他的方法解决这个问题。
说明: 不要使用类的成员 / 全局 / 静态变量来存储状态,你的序列化和反序列化算法应该是无状态的。
Tag
IO库,stringstream的读取。
两个方法:stringstream in(str) :string往流里存。in.str() 从流返回string。 dfs。string -> int :stoi(val)。
法1.
1.序列化:dfs前中后、bfs层次。反序列化要和序列化方法对应,结果唯一。
2.空节点:‘#’
3.每个节点结束标志:‘ ’,作用是防止歧义
4.用std的string流来对string进行分割,in>>val;每次遇到空格就停止,流的状态改变。
//dfs:preOrder
class Codec {
public:
// Encodes a tree to a single string.
string serialize(TreeNode* root) {
ostringstream out;
serialize(root,out);
return out.str();
}
// Decodes your encoded data to tree.
TreeNode* deserialize(string data)
{
istringstream in(data);
return deserialize(in);
}
private:
// root - left - right
void serialize(TreeNode *root,ostringstream &out)
{
if(root)
{
out<<root->val<<' ';//‘ ’为结束符
serialize(root->left,out);
serialize(root->right,out);
}
else
{
out<<"# ";//#代表空节点,后面还有一个结束符' '
}
}
TreeNode* deserialize(istringstream &in)
{
string val;
in >> val; //一个单词作为独立元素。用string流把string分割了
if(val=="#")
return nullptr;
TreeNode* root=new TreeNode(stoi(val));
root->left=deserialize(in);
root->right=deserialize(in);
return root;
}
};
法2.BFS.队列。根节点入queue。检查根不为空。将根的左右节点入queue。
//BFS
class Codec {
public:
// Encodes a tree to a single string.
string serialize(TreeNode* root) {
if(!root)
return "";
queue<TreeNode*> q;
q.push(root);
stringstream out;//string 流,初始化接受string定义,int输入用<<
while(!q.empty())
{
TreeNode* t = q.front();
q.pop();
if(t)//bfs如果根节点存在,把左右孩子依次压入队列
{
out<< t->val <<" ";
q.push(t->left);
q.push(t->right);
}
else
{
out<<"# ";
}
}
cout<<out.str();
return out.str();
}
// Decodes your encoded data to tree.
TreeNode* deserialize(string data) {
if(data=="")
return nullptr;
queue<TreeNode*> myque;
stringstream in(data);
string val;
in>>val;
//第一个单词一定存在,压入队列,且是根节点
TreeNode* root=new TreeNode(stoi(val));
TreeNode* cur=root;
myque.push(root);
while(!myque.empty())
{
cur=myque.front();myque.pop();
in>>val;
if(val!="#")
{
cur->left=new TreeNode(stoi(val));
myque.push(cur->left);
}
in>>val;
if(val!="#")
{
cur->right=new TreeNode(stoi(val));
myque.push(cur->right);
}
}
return root;
}
};
法3 返回char* 的做法。 strdup(out.str().c_str()); 将string 转为char *. 反之可以直接转换。
//bfs
#include <string.h>
class Solution {
public:
char* Serialize(TreeNode *root) {
if(!root)
return nullptr;
stringstream out;
queue<TreeNode*> myque;
myque.push(root);
while(!myque.empty())
{
root=myque.front();myque.pop();
if(root)
{
out<<root->val<<" ";
myque.push(root->left);
myque.push(root->right);
}
else
{
out<<"# ";
}
}
return strdup(out.str().c_str());
}
TreeNode* Deserialize(char *str) {
if(!str)
return nullptr;
string s=str;
stringstream in(s);
queue<TreeNode*> myque;
string val;
in>>val;
TreeNode* ret = new TreeNode(stoi(val));
TreeNode* root =ret;
myque.push(root);
while(!myque.empty())
{
root= myque.front();
myque.pop();
in>>val;
if(val!="#")
{
root->left = new TreeNode(stoi(val));
myque.push(root->left);
}
in>>val;
if(val!="#")
{
root->right = new TreeNode(stoi(val));
myque.push(root->right);
}
}
return ret;
}
};
问题
1.atoi/stoi/strtoi/stoui区别

2.C++ IO库

3.string 转 char*
头文件:#include <string.h>
定义函数:char * strdup(const char *s);
函数说明:strdup()会先用maolloc()配置与参数s 字符串相同的空间大小,然后将参数s 字符串的内容复制到该内存地址,然后把该地址返回。该地址最后可以利用free()来释放。
返回值:返回一字符串指针,该指针指向复制后的新字符串地址。若返回NULL 表示内存不足。
#include <string.h>
main(){
char a[] = "strdup";
char *b;
b = strdup(a);
printf("b[]=\"%s\"\n", b);
}
LeetCode297. Serialize and Deserialize Binary Tree的更多相关文章
- [LeetCode] Serialize and Deserialize Binary Tree
Serialize and Deserialize Binary Tree Serialization is the process of converting a data structure or ...
- [LintCode] Serialize and Deserialize Binary Tree(二叉树的序列化和反序列化)
描述 设计一个算法,并编写代码来序列化和反序列化二叉树.将树写入一个文件被称为“序列化”,读取文件后重建同样的二叉树被称为“反序列化”. 如何反序列化或序列化二叉树是没有限制的,你只需要确保可以将二叉 ...
- LC 297 Serialize and Deserialize Binary Tree
问题: Serialize and Deserialize Binary Tree 描述: Serialization is the process of converting a data stru ...
- 【LeetCode】297. Serialize and Deserialize Binary Tree 解题报告(Python)
[LeetCode]297. Serialize and Deserialize Binary Tree 解题报告(Python) 标签: LeetCode 题目地址:https://leetcode ...
- [Java]LeetCode297. 二叉树的序列化与反序列化 | Serialize and Deserialize Binary Tree
Serialization is the process of converting a data structure or object into a sequence of bits so tha ...
- [LeetCode] Serialize and Deserialize Binary Tree 二叉树的序列化和去序列化
Serialization is the process of converting a data structure or object into a sequence of bits so tha ...
- LeetCode——Serialize and Deserialize Binary Tree
Description: Serialization is the process of converting a data structure or object into a sequence o ...
- Serialize and Deserialize Binary Tree
Design an algorithm and write code to serialize and deserialize a binary tree. Writing the tree to a ...
- 297. Serialize and Deserialize Binary Tree
题目: Serialization is the process of converting a data structure or object into a sequence of bits so ...
随机推荐
- entity framework discriminator error
前几天使用code first碰到错误:列名 'Discriminator' 无效.这是一个很少见的错误,搜索了很久才发现是code first的poco实体对象的继承问题. 比如,我定义了一个实体类 ...
- Hibernate系列4-----之删除
1.和它的增改查兄弟不同,多了个until包定义了HibernateUntil类,让我们来一起看看吧 public class HibernateUntil { private static Conf ...
- SQL Server和ASP.NET的操作基本操作
ado.net提供了丰富的数据库操作,这些操作可以分为三个步骤: 第一,使用SqlConnection对象连接数据库: 第二,建立SqlCommand对象,负责SQL语句的执行和存储过程的调用: 第三 ...
- Python数据类型及常用操作
Python字符串类型 1.用途: 用来记录有描述性的状态.比如:人名,地址等. 2.定义方式: 创建字符串非常简单,在‘ ’,“ ”,‘’‘ ’‘’内一填写一系列的字符例如:msg='hello' ...
- div多选控制
此点击按钮,弹出DIV,div内容可以多项选择,点击确定,被选项回填至文本框.功能类似之前写过的一篇日期多选,不过是在其基础上,新增点击页面其他区域,隐藏div功能. 1.css部分代码 .multi ...
- android ContentProvider共享数据
ContentProvider共享数据 ContentProvider对外共享数据需要: 1.定义一个ContentProvider类,需要继承android的ContentProvider基类 2. ...
- [topcoder]TheConsecutiveIntegersDivOne
http://community.topcoder.com/stat?c=problem_statement&pm=13625&rd=16278 首先,如果记得曼哈顿距离最小值那个问题 ...
- centos6.5_64bit-Tomcat7安装部署
此次安装系统版本及软件版本 centos6.5-64bit java -1.7.0_45 jdk1.8.0_111 apache-tomcat-7.0.73 一.检查java版本信息 ...
- 05、Spark
05.Spark shell连接到Spark集群执行作业 5.1 Spark shell连接到Spark集群介绍 Spark shell可以连接到Spark集群,spark shell本身也是spar ...
- HCNA配置浮动静态路由
1.拓扑图 2.配置IP R1 Please press enter to start cmd line! ############ <Huawei> Dec ::-: Huawei %% ...