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 ...
随机推荐
- OpenStack Weekly Rank 2015.08.03
Module Reviews Drafted Blueprints Completed Blueprints Filed Bugs Resolved Bugs Cinder 7 1 1 7 11 Sw ...
- linux_api之文件属性
本篇索引:1.引言2.文件类型3.获取文件属性的函数,stat.fstat.lstat4.超级用户(root用户)和普通用户5.进程与用户ID6.文件权限的检查7.新创建的的文件和目录的所有权8.ac ...
- 亲测SQLServer的最大连接数
很多做架构设计.程序开发.运维.技术管理的朋友可能或多或少有这样的困惑: SQLServer到底支持多少连接数的并发? SQLServer是否可以满足现有的应用吗? 现有的技术架构支持多少连接数的并发 ...
- Http和Https的区别--笔记
学习链接: 知乎:https://www.zhihu.com/question/19577317 法号桑菜 http://blog.csdn.net/jasonjwl/article/details/ ...
- SSL--Windows下生成OpenSSL自签证书
:OPenSSL下载地址:https://www.openssl.org/source/ 编译好的OpenSSL下载地址: http://slproweb.com/products/Win32Open ...
- centos7 gearmand-1.1.15打包rpm
wget https://github.com/gearman/gearmand/releases/download/1.1.15/gearmand-1.1.15.tar.gz -O /root/rp ...
- Element(Vue)+Express(Node)模拟服务器获取本地json数据
网上很多教程说需要在build目录下的dev-server.js文件中配置,但目前最新的vue-cli是没有dev-server.js这个文件的,因为已经被合并到webpack.dev.conf.js ...
- Ubuntu小工具
更好的工具 更多的界面风格: https://github.com/anmoljagetia/Flatabulous 更丰富的终端zsh: https://github.com/robbyrussel ...
- mysql : 修改数据库权限
解决步骤 第一步,点击用户 注意!!! 编辑权限,在我们设置权限之前,我们需要先重新加载才能生效, 如果不用编辑的话,直接按重新载入编辑,这个相当于保存. 中文意思(注意看那段话) 第二步 选择要处理 ...
- 关于定义顺序和内存分配的关系--记一道不严谨的C语言题
include<stdio.h> #include<iostream> int main() { char a[] = "123"; char b[] = ...